예제 #1
0
/**
 * Loads the given file as a Program, then returns it wrapped in a TestClass.
 * @param string $file The path to the file to load.
 * @return \Phortress\Program
 */
function loadGlassBoxProgram($file)
{
    $program = new \Phortress\Program($file);
    $program = new \TestObject($program);
    $program->parse();
    return $program;
}