Rough Skeleton for Tests and Classes

This commit is contained in:
2025-12-03 16:28:17 +01:00
parent 668a76e26c
commit c5e26bf594
8 changed files with 91 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
package hhn.temp.project;
import java.util.ArrayList;
import java.util.List;
public class AssignmentManager {
List<Worker> workerList;
public AssignmentManager() {
workerList = new ArrayList<>();
}
}