package init; import static org.junit.Assert.*; import org.junit.Before; import org.junit.Test; public class AccountTest { @Before public void setUp() throws Exception { } @Test public void testAccount() { //fail("Not yet implemented"); } @Test public void testGetUUID() { //fail("Not yet implemented"); } @Test public void testGetSummaryLine() { //fail("Not yet implemented"); } @Test public void testGetBalance() { //fail("Not yet implemented"); } @Test public void testPrintTransHistory() { //fail("Not yet implemented"); } @Test public void testAddTransaction() { //fail("Not yet implemented"); } }