コード例 #1
0
ファイル: DatabaseTest.php プロジェクト: noseglid/phpa
 /**
  * @dataProvider getSrc_dp
  */
 public function testGetSrc($fnc, $file, $expected)
 {
     $this->assertSame($expected, Database::getSrc($fnc, $file));
 }
コード例 #2
0
ファイル: DatabaseReporter.php プロジェクト: noseglid/phpa
 public function report()
 {
     Database::init($this->f);
     Database::createTables();
     Database::insertData($this->data);
 }