Ejemplo n.º 1
0
 // Test the getBalance function
 @Test
 public void balancetest() {
   Account a = new Account();
   a.setBalance(678.99);
   assertEquals(a.getBalance(), 678.99, 0.001);
 }