Example #1
0
 /**
  * @covers Paradox\Client::getDatabaseInfo
  */
 public function testGetDatabaseInfo()
 {
     //Check that the database exists
     $databaseInfo = $this->client->getDatabaseInfo('_system');
     $this->assertInternalType('array', $databaseInfo, 'The database info should be an array');
     $this->assertNotEmpty($databaseInfo, 'The database info should not be empty');
 }