Ejemplo n.º 1
0
 public function testFilterReferences()
 {
     $task = new Task();
     $task->setDescription('foo');
     $this->taskManager->save($task);
     $this->taskManager->clear();
     $task = $this->taskManager->getReference($task->getUuid());
     $this->taskManager->filter();
     $this->assertEquals('foo', $task->getDescription());
 }