Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testFindOneNotFound PHP Method

testFindOneNotFound() public method

public testFindOneNotFound ( )
    public function testFindOneNotFound()
    {
        $document = $this->getCollection()->findOne(['foo' => 'foo'], ['_id' => false]);
        $this->assertNull($document);
    }
MongoCollectionTest