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

test_mysql_field_flags_fail() public method

    public function test_mysql_field_flags_fail()
    {
        $this->getConnection("shim_test");
        $result = mysql_query("SELECT * FROM testing LIMIT 1");
        $this->assertEquals("testing", mysql_field_flags($result, 999));
    }
MySqlShimTest