stability and intro of junit

This commit is contained in:
David Westgate 2016-06-02 20:47:33 -07:00
parent c9d1267ca1
commit 2e3a856854
4 changed files with 34 additions and 0 deletions

View 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");
}
}

View 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");
}
}