exists() public method

public exists ( ) : boolean
return boolean
コード例 #1
0
ファイル: DatabaseTest.php プロジェクト: nguillaumin/librenms
 public function testNotExists()
 {
     $database = new Database('test_not_exists', $this->mockClient);
     $this->assertEquals($database->exists(), false);
 }