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

testUpdateWriteConcern() public method

    public function testUpdateWriteConcern()
    {
        $this->setExpectedException('MongoWriteConcernException', "cannot use 'w' > 1 when a host is not replicated");
        $this->getCollection()->update([], ['$set' => ['foo' => 'bar']], ['w' => 2]);
    }
MongoCollectionTest