diff --git a/Task_Managment_Application/bin/Account_ModuleTest.class b/Task_Managment_Application/bin/Account_ModuleTest.class new file mode 100644 index 0000000..2c52a00 Binary files /dev/null and b/Task_Managment_Application/bin/Account_ModuleTest.class differ diff --git a/Task_Managment_Application/bin/Manager_ModuleTest.class b/Task_Managment_Application/bin/Manager_ModuleTest.class new file mode 100644 index 0000000..bc826b8 Binary files /dev/null and b/Task_Managment_Application/bin/Manager_ModuleTest.class differ diff --git a/Task_Managment_Application/src/Account_ModuleTest.java b/Task_Managment_Application/src/Account_ModuleTest.java new file mode 100644 index 0000000..0500b42 --- /dev/null +++ b/Task_Managment_Application/src/Account_ModuleTest.java @@ -0,0 +1,14 @@ +import static org.junit.Assert.*; + +import org.junit.Test; + +public class Account_ModuleTest +{ + + @Test + public void testAccount_Module() + { + fail("Not yet implemented"); + } + +} diff --git a/Task_Managment_Application/src/Manager_ModuleTest.java b/Task_Managment_Application/src/Manager_ModuleTest.java new file mode 100644 index 0000000..a1eda17 --- /dev/null +++ b/Task_Managment_Application/src/Manager_ModuleTest.java @@ -0,0 +1,20 @@ +import static org.junit.Assert.*; + +import org.junit.Test; + +public class Manager_ModuleTest extends Manager_Module +{ + + public Manager_ModuleTest(String username) + { + super(username); + // TODO Auto-generated constructor stub + } + + @Test + public void testManager_Module() + { + fail("Not yet implemented"); + } + +}