Dshafik\MySQL\Tests\MySqlShimTest::test_mysql_list_tables PHP Method

test_mysql_list_tables() public method

    public function test_mysql_list_tables()
    {
        $this->getConnection();
        $result = mysql_list_tables("mysql");
        $this->assertResult($result);
        while ($row = mysql_fetch_assoc($result)) {
            $this->assertArrayHasKey("Tables_in_mysql", $row);
        }
    }
MySqlShimTest