/**
  * Tests DbAdapter->testSetupMysql()
  */
 public function testTestSetupMysql()
 {
     $tables = array('album');
     $this->assertInstanceOf('BaseTestCase', $this->BaseTestCase->setTables($tables));
     $this->assertEquals($tables, $this->BaseTestCase->getTables());
     $dbTest = $this->BaseTestCase->createTables();
     $this->assertInstanceOf('BaseTestCase', $dbTest);
     $dbTest = $this->BaseTestCase->dropTables();
     $this->assertInstanceOf('BaseTestCase', $dbTest);
     $dbTest = $this->BaseTestCase->createTables()->dropTables();
     $this->assertInstanceOf('BaseTestCase', $dbTest);
 }