Sokil\Mongo\CollectionTest::testReadNearest PHP Method

testReadNearest() public method

public testReadNearest ( array $tags = null )
$tags array
    public function testReadNearest(array $tags = null)
    {
        $this->collection->readNearest(array(array('dc' => 'kyiv'), array('dc' => 'lviv')));
        $this->assertEquals(array('type' => \MongoClient::RP_NEAREST, 'tagsets' => array(array('dc' => 'kyiv'), array('dc' => 'lviv'))), $this->collection->getReadPreference());
    }
CollectionTest