Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testBatchInsertWithEmptyKey PHP 메소드

testBatchInsertWithEmptyKey() 공개 메소드

    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