We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49feead commit 6167d06Copy full SHA for 6167d06
acyclic-visitor/src/test/java/com/iluwatar/acyclicvisitor/ConfigureForUnixVisitorTest.java
@@ -62,14 +62,4 @@ public void testVisitForZoom() {
62
assertThat(logger.getLoggingEvents()).extracting("level", "message").contains(
63
tuple(INFO, zoom + " used with Unix configurator."));
64
}
65
-
66
- @Test
67
- public void testVisitForHayes() {
68
- ConfigureForUnixVisitor conUnix = new ConfigureForUnixVisitor();
69
- Hayes hayes = mock(Hayes.class);
70
71
- Assertions.assertThrows(ClassCastException.class, () -> {
72
- ((HayesVisitor)conUnix).visit(hayes);
73
- });
74
- }
75
0 commit comments