Ejemplo n.º 1
0
 // Test the getTransactions function
 @Test
 public void transactionstest() {
   Account a = new Account();
   a.setTransactions(11);
   assertEquals(a.getTransactions(), 11);
 }