Skip to content

Commit 49f5da8

Browse files
authored
Remove accidently added duplicate tests
1 parent f43812c commit 49f5da8

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

exercises/practice/secret-handshake/src/test/java/HandshakeCalculatorTest.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -88,27 +88,6 @@ public void testThatInput0YieldsNoActions() {
8888
assertThat(handshakeCalculator.calculateHandshake(0)).isEmpty();
8989
}
9090

91-
@Disabled("Remove to run test")
92-
@Test
93-
public void testThatHandlesMoreThanFiveBinaryPlacesWithReversal() {
94-
assertThat(handshakeCalculator.calculateHandshake(51))
95-
.containsExactly(Signal.DOUBLE_BLINK, Signal.WINK);
96-
}
97-
98-
@Disabled("Remove to run test")
99-
@Test
100-
public void testThatHandlesMoreThanFiveBinaryPlacesWithoutReversal() {
101-
assertThat(handshakeCalculator.calculateHandshake(35))
102-
.containsExactly(Signal.WINK, Signal.DOUBLE_BLINK);
103-
}
104-
105-
@Disabled("Remove to run test")
106-
@Test
107-
public void testInputThatYieldsAllActionsFromMoreThanFiveBinaryPlaces() {
108-
assertThat(handshakeCalculator.calculateHandshake(111))
109-
.containsExactly(Signal.WINK, Signal.DOUBLE_BLINK, Signal.CLOSE_YOUR_EYES, Signal.JUMP);
110-
}
111-
11291
/* The following tests diverge from the canonical test data to test numbers with binary representation with
11392
* more than five digits are correctly handled. For more details, check out issue #1965 here:
11493
* (https://github.com/exercism/java/issues/1965).

0 commit comments

Comments
 (0)