Example #1
0
 public function testLastmodifier()
 {
     $this->assertNull($this->object->getLastmodifier());
     $user = new User();
     $this->object->setLastmodifier($user);
     $this->assertEquals($user, $this->object->getLastmodifier());
 }