File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
event-aggregator/src/main/java/com/iluwatar/event/aggregator
game-loop/src/test/java/com/iluwatar/gameloop Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -43,5 +43,6 @@ public void onEvent(Event e) {
4343
4444 @ Override
4545 public void timePasses (Weekday day ) {
46+ throw new UnsupportedOperationException ("KingsHand does not support time passing" );
4647 }
4748}
Original file line number Diff line number Diff line change 2424 */
2525package com .iluwatar .gameloop ;
2626
27- import static org .junit .jupiter .api .Assertions .assertFalse ;
28-
2927import org .junit .jupiter .api .AfterEach ;
3028import org .junit .jupiter .api .Assertions ;
29+ import static org .junit .jupiter .api .Assertions .assertFalse ;
3130import org .junit .jupiter .api .BeforeEach ;
3231import org .junit .jupiter .api .Test ;
3332
@@ -46,6 +45,7 @@ void setup() {
4645 gameLoop = new GameLoop () {
4746 @ Override
4847 protected void processGameLoop () {
48+ throw new UnsupportedOperationException ("Not supported yet." );
4949 }
5050 };
5151 }
You can’t perform that action at this time.
0 commit comments