Wrote the first GoodCasesTests

This commit is contained in:
2025-12-03 17:29:56 +01:00
parent 26f7ecbee6
commit d5a9825ec1
22 changed files with 728 additions and 66 deletions

View File

@@ -0,0 +1,30 @@
package hhn.temp.project;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
public class BadCasesTest {
@BeforeEach
public void setup() {
AssignmentManager manager = new AssignmentManager();
}
@Test
@DisplayName("Assert that added tasks can't be Null")
public void assertNewTasksAreNotNull() {
}
@Test
@DisplayName("Assert List isn't empty after adding a task")
public void assertListNowEmptyAfterAdd() {
}
@Test
@DisplayName("Assert only existing tasks can be edited")
public void assertEditOnlyExistingTasks() {
}
}