public function testGetSetCompletedDateString()
 {
     $expected = date(OPGDateFormat::getDateTimeFormat());
     $this->task->setDateTimeFromString($expected, 'completedDate');
     $this->assertEquals($expected, $this->task->getDateTimeAsString('completedDate'));
 }