コード例 #1
0
 /**
  * @test
  * @dataProvider jsonFileProvider
  */
 public function executeTestCasesFor($file)
 {
     $this->fileReader->setFile($file);
     $this->runTestCaseFile(new JsonTestCaseFileHandler($this->fileReader));
 }
コード例 #2
-2
 /**
  * @test
  * @dataProvider jsonFileProvider
  */
 public function executeTestCasesFor($file)
 {
     if (!$this->canExecuteTestCasesFor($file)) {
         $this->markTestSkipped($file . ' excluded from test run');
     }
     $this->fileReader->setFile($file);
     $this->runTestCaseFile(new JsonTestCaseFileHandler($this->fileReader));
 }