Opensoft\Tests\Storage\MongoDBStorageAdapterTest::testGetCollectionName PHP Method

testGetCollectionName() public method

    public function testGetCollectionName()
    {
        $adapter = new MongoDBStorageAdapter($this->mongo, 'feature_test');
        $result = $adapter->getCollectionName();
        $this->assertSame('feature_test', $result);
    }