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

testCreateIndexInvalid() public method

    public function testCreateIndexInvalid()
    {
        $this->setExpectedException('MongoException', 'index specification has no elements');
        $this->getCollection()->createIndex([]);
    }
MongoCollectionTest