assertNotNull(tarefa.getId());
}
public void testAlterarTarefaInvalido() throws Exception {
try {
Tarefa tarefa = new Tarefa(null, "Teste", criarUsuario(), criarStory(), Passo.TO_DO);
tarefaService.inserir(tarefa);
assertNotNull(tarefa.getId());
tarefa.setUsuario(new Usuario());
tarefa.setStory(new Story());
tarefa.setDescricao("");
tarefa.setPasso(null);
tarefaService.alterar(tarefa);
Tarefa tarefaAlterada = tarefaService.recuperar(tarefa.getId());
assertEquals(Passo.DOING, tarefaAlterada.getPasso());
} catch (ValidationException e) {
throwValidations(e);
}
}