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

testBatchInsertWithNumericKey() public method

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