Example #1
0
 /**
  * @covers EMongoDocument::getAttributeLabel
  */
 function testGetAttributeLabel()
 {
     $c = new User();
     $c->username = '******';
     $this->assertTrue($c->save());
     $this->assertEquals('name', $c->getAttributeLabel('username'));
 }