Sokil\Mongo\CollectionTest::testGetOption PHP Method

testGetOption() public method

public testGetOption ( )
    public function testGetOption()
    {
        // define array of collections
        $this->database->map(array('collection1' => array('someOption' => 'someValue')));
        $this->assertEquals('someValue', $this->database->getCollection('collection1')->getOption('someOption'));
    }
CollectionTest