Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/br/com/pedr0limpio/enums/Tag.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package br.com.pedr0limpio.enums;

import org.eclipse.microprofile.graphql.Enum;
//TODO[#1]: Create the missing sequence diagrams for tasky

@Enum
public enum Tag {
Work,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public int newTask(Task task) {

@Query
@Description("Lists all tasks")
public List<Task> listAll() { //TODO[#2]: Implement the listAll() method to list all tasks.
public List<Task> listAll() {
return taskBaseDAO.getAllTasks();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,4 @@ public void testGetById_DaoThrowsException() {
}
}

//TODO[#6]: Make all the missing tests. Try starting here using TDD technique.
//TODO[#7]: Check whether it will be necessary to create tests for the service classes, if so, create the class(es)
//TODO[#6]: Make all the missing tests. Try starting here using TDD technique.