public function testTotalNumberTuplesInTable()
 {
     $mysqlHandler = new MySQLHandler($this->user, $this->password, $this->database, $this->host, $this->port);
     $rows = $mysqlHandler->GetTotalNumberTuplesInTable('colfusion_dnameinfo');
     $this->assertGreaterThan(10, $rows);
 }