コード例 #1
0
ファイル: export_php_test.php プロジェクト: ZerGabriel/phpbb
 /**
  * @dataProvider crawl_php_file_data
  */
 public function test_crawl_php_file($file)
 {
     $this->assertGreaterThanOrEqual(0, $this->exporter->crawl_php_file($file));
 }
コード例 #2
0
 /**
  * @dataProvider crawl_php_file_throws_data
  */
 public function test_crawl_php_file_throws($file, $exception_code)
 {
     $this->setExpectedException('LogicException', '', $exception_code);
     $this->exporter->crawl_php_file($file);
 }