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

testWriteConcernIsInherited() public method

    public function testWriteConcernIsInherited()
    {
        $database = $this->getDatabase();
        $database->setWriteConcern('majority', 100);
        $collection = $database->selectCollection('test');
        $this->assertSame(['w' => 'majority', 'wtimeout' => 100], $collection->getWriteConcern());
    }
MongoCollectionTest