package init; import static org.junit.Assert.*; import org.junit.Before; import org.junit.Test; import Root.User; public class UserTest { User user; @Before public void setUp() throws Exception { } @Test public void testUser() { //fail("Not yet implemented"); } @Test public void testAddAccount() { //fail("Not yet implemented"); } @Test public void testGetUUID() { //fail("Not yet implemented"); } @Test public void testValidatePin() { //fail("Not yet implemented"); } @Test public void testGetFirstName() { //fail("Not yet implemented"); } @Test public void testPrintAccountsSummary() { //fail("Not yet implemented"); } @Test public void testNumAccounts() { //fail("Not yet implemented"); } @Test public void testPrintAcctTransHistory() { //fail("Not yet implemented"); } @Test public void testGetAcctBalance() { //fail("Not yet implemented"); } @Test public void testGetAcctUUID() { //fail("Not yet implemented"); } @Test public void testAddAcctTransaction() { //fail("Not yet implemented"); } }