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

test_mysql_field_len_fail() public method

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