コード例 #1
0
ファイル: ReminderTest.php プロジェクト: Maksold/platform
 public function testSetSentState()
 {
     $this->entity->setState(Reminder::STATE_SENT);
     $this->assertEquals(Reminder::STATE_SENT, $this->entity->getState());
     $this->assertInstanceOf('DateTime', $this->entity->getSentAt());
 }