Sokil\Mongo\CollectionTest::testInsert_Acknowledged PHP Method

testInsert_Acknowledged() public method

    public function testInsert_Acknowledged()
    {
        $this->collection->setWriteConcern(1);
        $this->collection->insert(array('a' => 1, 'b' => 2));
        $document = $this->collection->find()->where('a', 1)->findOne();
        $this->assertNotEmpty($document);
        $this->assertEquals(2, $document->b);
    }
CollectionTest