Sokil\Mongo\CollectionTest::testGetStoredDocumentInstanceFromArray_DocumentNotStored PHP Method

testGetStoredDocumentInstanceFromArray_DocumentNotStored() public method

    public function testGetStoredDocumentInstanceFromArray_DocumentNotStored()
    {
        $document = $this->collection->hydrate(array('param' => 'value'));
        $this->assertTrue($document->isStored());
    }
CollectionTest