Creates the interface for PHPUnit testing
Inheritance: extends ParaTest\Console\Testers\Tester
Beispiel #1
0
 public function testRequireBootstrapIsChdirResistent()
 {
     $file = dirname(__FILE__) . '/../../../../fixtures/chdirBootstrap.php';
     $tester = new PHPUnit();
     $cwd = getcwd();
     $tester->requireBootstrap($file);
     $this->assertEquals($cwd, getcwd());
 }