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

testSelectCollectionWithDatabaseObject() public method

    public function testSelectCollectionWithDatabaseObject()
    {
        $client = $this->getClient();
        $database = $this->getDatabase($client);
        $collection = $client->selectCollection($database, 'test');
        $this->assertSame('mongo-php-adapter.test', (string) $collection);
    }
MongoCollectionTest