public function testSomeFunctions()
 {
     $test = new Article();
     $wrapped = new MongoDocumentWrapper($test, $this->dm);
     $wrapped->populate(array('title' => 'test'));
     $this->assertEquals('test', $wrapped->getPropertyValue('title'));
     $this->assertFalse($wrapped->hasValidIdentifier());
 }