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

testBatchInsertObjectWithPrivateProperties() public method

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