File tree Expand file tree Collapse file tree
src/test/java/seedu/address/logic/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020import seedu .address .model .Model ;
2121import seedu .address .model .ReadOnlyAddressBook ;
2222import seedu .address .model .ReadOnlyUserPrefs ;
23+ import seedu .address .model .module .Assignment ;
2324import seedu .address .model .person .Person ;
2425import seedu .address .testutil .PersonBuilder ;
2526
@@ -148,6 +149,16 @@ public ObservableList<Person> getFilteredPersonList() {
148149 public void updateFilteredPersonList (Predicate <Person > predicate ) {
149150 throw new AssertionError ("This method should not be called." );
150151 }
152+
153+ @ Override
154+ public boolean hasAssignment (Assignment assignment ) {
155+ throw new AssertionError ("This method should not be called." );
156+ }
157+
158+ @ Override
159+ public void addAssignment (Assignment assignment ) {
160+ throw new AssertionError ("This method should not be called." );
161+ }
151162 }
152163
153164 /**
You can’t perform that action at this time.
0 commit comments