/**
  * @depends testPutToDo
  * @param Batchblue_Service_BatchBook_ToDo $toDo
  * @return void
  */
 public function testDeleteToDo(Batchblue_Service_BatchBook_ToDo $toDo)
 {
     $this->_toDoService->deleteToDo($toDo);
     $getToDo = $this->_toDoService->getToDo($toDo->getId());
     $this->assertNull($getToDo);
 }