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

testBatchInsertWithEmptyKey() public method

    public function testBatchInsertWithEmptyKey()
    {
        $this->setExpectedException('MongoException', 'zero-length keys are not allowed, did you use $ with double quotes?');
        $documents = [['' => 'foo']];
        $this->getCollection()->batchInsert($documents);
    }
MongoCollectionTest