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

test_mysql_pconnect() public method

public test_mysql_pconnect ( )
    public function test_mysql_pconnect()
    {
        $conn = mysql_pconnect(static::$host, 'root');
        $result = mysql_query("SELECT 'persistent'", $conn);
        $row = mysql_fetch_row($result);
        $this->assertEquals('persistent', $row[0]);
    }
MySqlShimTest