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

testInsertObjectWithPrivateProperties() public method

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