First database tests
This commit is contained in:
51
test/hhn/temp/project/GoodCasesTest.java
Normal file
51
test/hhn/temp/project/GoodCasesTest.java
Normal file
@@ -0,0 +1,51 @@
|
||||
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() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user