コード例 #1
0
ファイル: DbIhmtest.php プロジェクト: saez0pub/simpleIHM
 public function testSiUneColonneEstEnautoIncrementJeleSait()
 {
     $db = new dbIhm('requete_test');
     initTestTable();
     $res = $db->getAllColumns('id');
     $expected = 'auto_increment';
     $this->assertEquals($expected, $res['Extra']);
 }