Inheritance: extends PHPUnit_Framework_TestCase
コード例 #1
0
ファイル: DatabaseTest.php プロジェクト: nguillaumin/librenms
 public function setUp()
 {
     parent::setUp();
     $this->resultData = file_get_contents(dirname(__FILE__) . '/result.example.json');
     $this->mockClient->expects($this->any())->method('listDatabases')->will($this->returnValue(array('test123', 'test')));
     $this->dataToInsert = file_get_contents(dirname(__FILE__) . '/input.example.json');
 }
コード例 #2
0
ファイル: AdminTest.php プロジェクト: greggcz/librenms
 /**
  *
  */
 public function setUp()
 {
     parent::setUp();
 }