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

testInsertObjectWithPrivateProperties() 공개 메소드

    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