Sokil\Mongo\DocumentTest::testVirtualSetter PHP Method

testVirtualSetter() public method

public testVirtualSetter ( )
    public function testVirtualSetter()
    {
        $document = $this->collection->createDocument(array('param' => 'value'));
        $document->setParam('newValue');
        $this->assertEquals('newValue', $document->get('param'));
    }
DocumentTest