Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testEmptyCollectionName PHP Method

testEmptyCollectionName() public method

    public function testEmptyCollectionName()
    {
        $this->setExpectedException('Exception', 'Collection name cannot be empty');
        new \MongoCollection($this->getDatabase(), '');
    }
MongoCollectionTest