diff --git a/Tests/dblayerooComplet.php b/Tests/dblayerooComplet.php index 37eefcb..3958adf 100644 --- a/Tests/dblayerooComplet.php +++ b/Tests/dblayerooComplet.php @@ -1058,4 +1058,21 @@ class test_dblayeroo_{ENGINE} extends PHPUnit_Framework_TestCase 'groups' => 'group1 group2' )), $res); } + + public function test_listTables_1 () + { + $tbl1 = $this->tbl1 (); + $res = $tbl1->listTables (); + $this->assertSame (array ( + 0 => 'grouped', + 1 => 'groupedoo', + 2 => 'multiple', + 3 => 'multiple2', + 4 => 'readOR', + 5 => 'rightsoo', + 6 => 'users', + 7 => 'users3', + 8 => 'usersoo', + ), $res); + } }