52 lines
1.2 KiB
Java
52 lines
1.2 KiB
Java
package hhn.temp.project;
|
|
|
|
import hhn.temp.project.AssignmentManager;
|
|
import org.junit.jupiter.api.BeforeEach;
|
|
import org.junit.jupiter.api.DisplayName;
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
|
|
|
public class GoodCasesTest {
|
|
|
|
@BeforeEach
|
|
public void setup() {
|
|
AssignmentManager manager = new AssignmentManager();
|
|
}
|
|
|
|
@Test
|
|
@DisplayName("Assert that a Worker can add a Task")
|
|
public void assertWorkerCanAddTask() {
|
|
}
|
|
|
|
@Test
|
|
@DisplayName("Assert that added Tasks are added to the List")
|
|
public void assertTasksShowInList() {
|
|
|
|
}
|
|
@Test
|
|
@DisplayName("Assert existing Tasks can be edited")
|
|
public void assertExistingTasksCanBeEdited() {
|
|
|
|
}
|
|
|
|
@Test
|
|
@DisplayName("Assert that Worker can remove own Task")
|
|
public void assertWorkerCanRemoveOwnTask() {
|
|
|
|
}
|
|
|
|
@Test
|
|
@DisplayName("Assert that Admin can remove every Task")
|
|
public void assertAdminCanRemoveEveryTask() {
|
|
|
|
}
|
|
@Test
|
|
@DisplayName("Assert deleted Tasks no longer show up in the List")
|
|
public void assertDeletedTasksDisappear() {
|
|
|
|
}
|
|
|
|
}
|