Ejemplo n.º 1
0
 public function testGettersSetters()
 {
     $note = new Note();
     $this->assertNull($note->getMessage());
     $this->assertNull($note->getId());
     $now = new \DateTime();
     $note->setCreatedAt($now)->setUpdatedAt($now)->setMessage('test');
     $this->assertEquals($now, $note->getCreatedAt());
     $this->assertEquals($now, $note->getUpdatedAt());
     $this->assertEquals('test', $note->getMessage());
     $user = new User();
     $note->setUpdatedBy($user)->setOwner($user);
     $this->assertSame($user, $note->getUpdatedBy());
     $this->assertEquals($user, $note->getOwner());
     $organization = new Organization();
     $this->assertNull($note->getOrganization());
     $note->setOrganization($organization);
     $this->assertSame($organization, $note->getOrganization());
 }