File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ public void OrderStatus_Finished(OrderImpl ord)
165165 * PRECONDITION: Receive a date
166166 * POSTCONDITION: Return the total of all orders for the date entered.
167167 */
168- public float DailyRegister (Cafeteria coffe , Date date )
168+ public float getDailyRegister (Cafeteria coffe , Date date )
169169 {
170170 float total = 0 ; //We save the total of the day
171171
Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ public void OrderStatus_FinishedCheck_OrderService()
286286 */
287287 public void DailyRegisterCheck_OrderService ()
288288 {
289- float total = ordSer .DailyRegister (coffe , date );
289+ float total = ordSer .getDailyRegister (coffe , date );
290290 float correctTotal =(ord1 .totalCost () + ord2 .totalCost () + ord3 .totalCost ());
291291 Assert .assertTrue ("Incorrect total" ,total == correctTotal );
292292
You can’t perform that action at this time.
0 commit comments