Inheritance: extends PHPUnit_Framework_TestCase
コード例 #1
0
ファイル: GroupTest.php プロジェクト: bruno-arsene/paratest
 public function setUp()
 {
     parent::setUp();
     $this->path = FIXTURES . DS . 'tests' . DS . 'GroupsTest.php';
 }
コード例 #2
0
 public function setUp()
 {
     parent::setUp();
     $this->invoker = new ParaTestInvoker($this->fixture('skipped-tests/SkippedOrIncompleteTest.php'), BOOTSTRAP);
 }
コード例 #3
0
 public function setUp()
 {
     parent::setUp();
     $this->deleteSmallTests();
 }
コード例 #4
0
ファイル: UsageTest.php プロジェクト: bruno-arsene/paratest
 public function setUp()
 {
     parent::__construct();
     $file = FIXTURES . DS . 'output' . DS . 'usage.txt';
     $this->usage = file_get_contents($file);
 }
コード例 #5
0
ファイル: OutputTest.php プロジェクト: luispabon/paratest
 public function setUp()
 {
     parent::setUp();
     $this->paratest = new ParaTestInvoker($this->fixture('failing-tests/UnitTestWithClassAnnotationTest.php'), BOOTSTRAP);
 }
コード例 #6
0
ファイル: GroupTest.php プロジェクト: luispabon/paratest
 public function setUp()
 {
     parent::setUp();
     $this->invoker = new ParaTestInvoker($this->fixture('passing-tests/GroupsTest.php'), BOOTSTRAP);
 }
コード例 #7
0
ファイル: OutputTest.php プロジェクト: bruno-arsene/paratest
 public function setUp()
 {
     parent::setUp();
     $this->path = FIXTURES . DS . "tests" . DS . "UnitTestWithClassAnnotationTest.php";
 }
コード例 #8
0
 public function setUp()
 {
     parent::setUp();
     $this->invoker = new ParaTestInvoker($this->fixture('dataprovider-tests/DataProviderTest.php'), BOOTSTRAP);
 }