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

test_mysql_field_type_fail() public method

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