Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testSelectCollectionWithDatabaseObject PHP 메소드

testSelectCollectionWithDatabaseObject() 공개 메소드

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