Skip to content

Commit

Permalink
Update src/test/seedu/address/logic/commands/AddDrinkCommandTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
LIU-TIANHANG committed Nov 10, 2018
1 parent 717c9bd commit d39bf0f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/test/seedu/address/logic/commands/AddDrinkCommandTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import seedu.address.model.InventoryList;
import seedu.address.model.ReadOnlyInventoryList;
import seedu.address.model.drink.Drink;
import seedu.address.model.transaction.Transaction;
import seedu.address.model.user.AuthenticationLevel;
import seedu.address.model.user.Password;
import seedu.address.model.user.UserName;
Expand Down Expand Up @@ -129,6 +130,16 @@ public ObservableList<Drink> getFilteredDrinkList () {
throw new AssertionError("This method should not be called.");
}

@Override
public ObservableList<Transaction> getTransactionList () {
throw new AssertionError("This method should not be called.");
}

@Override
public String getTransactions () {
throw new AssertionError("This method should not be called.");
}

@Override
public void updateFilteredDrinkList (Predicate<Drink> predicate) {
throw new AssertionError("This method should not be called.");
Expand Down

0 comments on commit d39bf0f

Please sign in to comment.