Ejemplo n.º 1
0
 public function testTableInfo()
 {
     $db = (require __DIR__ . "/config.php");
     $mysqltcs = new Mysqltcs($db['host'], $db['user'], $db['psw'], $db['db']);
     $connection = new MysqltcsOperations($mysqltcs, $db['tables']['test1']);
     $this->assertEquals($connection->getTableInfo("Name"), $db['tables']['test1']);
 }