Sokil\Mongo\CollectionTest::testGetDocuments_UnexistedIdsSpecified PHP Method

testGetDocuments_UnexistedIdsSpecified() public method

    public function testGetDocuments_UnexistedIdsSpecified()
    {
        // get documents when wrong id's
        $this->assertEquals(array(), $this->collection->getDocuments(array(new \MongoId(), new \MongoId(), new \MongoId())));
    }
CollectionTest