public function testGetAllTables()
 {
     $tableArray = $this->db->getAllTables();
     $return = false;
     foreach ($tableArray as $table) {
         if (in_array($this->tableName, $table, true) === true) {
             $return = true;
             break;
         }
     }
     self::assertEquals(true, $return);
 }