Exemplo n.º 1
0
 @Test
 public void partWithTwoDebtsNoUnit() {
   final Donation donation =
       new Donation("test", getRnD(), getBob(), getEuro(), BigDecimal.TEN, 0);
   new Debt(getBob(), donation, 2);
   assertEquals(2, donation.getTakenUnit());
   assertEquals(BigDecimal.valueOf(5), donation.getPartCost());
 }