Sokil\Mongo\DocumentTest::testUnhandledMethodCall PHP Method

testUnhandledMethodCall() public method

Test call of method not described in behaviors, not setter and not getter
    public function testUnhandledMethodCall()
    {
        $document = $this->collection->createDocument(array('param' => 'value'));
        $document->unexistedMethod();
    }
DocumentTest