/**
  * Make sure at least "products" table is in table list.
  */
 public function testGetTables()
 {
     $tables = $this->dbi->getTables();
     $this->assertTrue(count($tables) >= 1, "Expected at least one table ('products')from getTables() call.");
 }