Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
EnriqueKhai committed Nov 11, 2019
1 parent 3ebb2f0 commit 4f5dba4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/hustler/ui/timer/UiMessages.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class UiMessages {
* the timer starts, resumes, etc.
*/
public static class ThreadStart {

/**
* This method informs the user each time a new timer is started.
*
Expand Down
11 changes: 7 additions & 4 deletions src/test/java/seedu/hustler/ui/timer/TimerLogicTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,24 @@ public void secondsModulo60_input021000_output020959() {

assertEquals(timeOutput2[0], timeInput2[0]);
assertEquals(timeOutput2[1], timeInput2[1]);
assertEquals(timeOutput2[2], timeInput2[2]); }
assertEquals(timeOutput2[2], timeInput2[2]);
}

@Test
public void minutesModulo60_input010000_output005959() {
timeInput3 = decrement(timeInput3);

assertEquals(timeOutput3[0], timeInput3[0]);
assertEquals(timeOutput3[1], timeInput3[1]);
assertEquals(timeOutput3[2], timeInput3[2]); }
assertEquals(timeOutput3[2], timeInput3[2]);
}

@Test
public void basicDecrement_input000001_output000000() {
timeInput4 = decrement(timeInput4);

assertEquals(timeOutput4[0], timeInput4[0]);
assertEquals(timeOutput4[1], timeInput4[1]);
assertEquals(timeOutput4[2], timeInput4[2]); }
}
assertEquals(timeOutput4[2], timeInput4[2]);
}
}

0 comments on commit 4f5dba4

Please sign in to comment.