Example #1
0
 /**
  * @covers Applications\Entity\Application::getAttributes
  * @covers Applications\Entity\Application::setAttributes
  */
 public function testSetGetAttributes()
 {
     $attributes = new Attributes();
     $attributes->setSendCarbonCopy(true)->setAcceptedPrivacyPolicy(true);
     $this->target->setAttributes($attributes);
     $this->assertEquals($attributes, $this->target->getAttributes());
 }