stability and intro of junit
This commit is contained in:
parent
c9d1267ca1
commit
2e3a856854
BIN
Task_Managment_Application/bin/Account_ModuleTest.class
Normal file
BIN
Task_Managment_Application/bin/Account_ModuleTest.class
Normal file
Binary file not shown.
BIN
Task_Managment_Application/bin/Manager_ModuleTest.class
Normal file
BIN
Task_Managment_Application/bin/Manager_ModuleTest.class
Normal file
Binary file not shown.
14
Task_Managment_Application/src/Account_ModuleTest.java
Normal file
14
Task_Managment_Application/src/Account_ModuleTest.java
Normal file
@ -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");
|
||||
}
|
||||
|
||||
}
|
20
Task_Managment_Application/src/Manager_ModuleTest.java
Normal file
20
Task_Managment_Application/src/Manager_ModuleTest.java
Normal file
@ -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");
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user