Sokil\Mongo\CollectionTest::testCreateDocument_IsNewDocumentStoredToPoolAfterSave PHP Method

testCreateDocument_IsNewDocumentStoredToPoolAfterSave() public method

    public function testCreateDocument_IsNewDocumentStoredToPoolAfterSave()
    {
        $this->assertTrue($this->collection->isDocumentPoolEmpty());
        $this->collection->createDocument(array('param' => 'value'))->save();
        $this->assertFalse($this->collection->isDocumentPoolEmpty());
    }
CollectionTest