public function testGetColumnsForSelectedTables()
 {
     $mysqlHandler = new MySQLHandler($this->user, $this->password, $this->database, $this->host, $this->port);
     $cols = $mysqlHandler->GetColumnsForSelectedTables(['colfusion_dnameinfo', 'colfusion_temporary']);
     $this->assertGreaterThan(5, count($cols['colfusion_dnameinfo']));
     $this->assertGreaterThan(5, count($cols['colfusion_temporary']));
 }