Пример #1
0
 /**
  * Test Get and Set Created Date
  *
  * @return void
  *
  * @covers \Rcm\Entity\ContainerAbstract
  */
 public function testGetAndSetCreatedDate()
 {
     $createdDate = new \DateTime('2014-Apr-20');
     $this->container->setCreatedDate($createdDate);
     $actual = $this->container->getCreatedDate();
     $this->assertEquals($createdDate, $actual);
 }