Exemple #1
0
  @Test
  public void testEditCost() throws SQLException, IOException {

    costBean.setCostValue("12");
    costBean.setText("FOOD");
    costBean.addCost();
    costBean.editCost(costBean.getCurrentCost());

    assertEquals("Texts should be equal", "FOOD", costBean.getNewtext());
  }