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

testFindOneConnectionIssue() public method

    public function testFindOneConnectionIssue()
    {
        $this->setExpectedException('MongoConnectionException');
        $client = $this->getClient([], 'mongodb://localhost:28888?connectTimeoutMS=1');
        $collection = $client->selectCollection('mongo-php-adapter', 'test');
        $collection->findOne();
    }
MongoCollectionTest