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

testBatchInsertWithInvalidKey() public method

    public function testBatchInsertWithInvalidKey()
    {
        $documents = [['*' => 'foo']];
        $this->getCollection()->batchInsert($documents);
        $this->assertSame(1, $this->getCollection()->count(['*' => 'foo']));
    }
MongoCollectionTest