Sphinx\Tests\SphinxClientTest::testSetMaxQueryTime PHP Метод

testSetMaxQueryTime() публичный Метод

public testSetMaxQueryTime ( )
    public function testSetMaxQueryTime()
    {
        $sphinx = new SphinxClient();
        $sphinx->setMaxQueryTime(10);
        $this->assertSame($sphinx->maxquerytime, 10);
    }
SphinxClientTest