Skip to content

Commit 40e2437

Browse files
committed
missing test
1 parent 4cae77f commit 40e2437

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/test/java/unquietcode/tools/esm/Routing_T.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ public void testAsyncWithinAsync() {
6262
assertEquals(1, c3.get());
6363
}
6464

65+
@Test
6566
public void testSimpleRedirect() {
6667
EnumStateMachine<TestStates> esm = new EnumStateMachine<>(TestStates.One);
6768
esm.addAll(TestStates.class, true);

src/test/java/unquietcode/tools/esm/Sequence_T.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
public class Sequence_T {
1818

1919
@Test
20-
public void testSequentialMatch() {
20+
public void test_sequential_match() {
2121
GenericStateMachine<Color> sm = new GenericStateMachine<>(Color.Red);
2222
sm.addTransition(Color.Red, Color.Blue);
2323
sm.addTransition(Color.Blue, Color.Green);
@@ -41,7 +41,7 @@ public void testSequentialMatch() {
4141
}
4242

4343
@Test
44-
public void testSequentialMatchWithWildcard() {
44+
public void test_sequential_match_with_wildcard() {
4545
EnumStateMachine<Color> sm = new EnumStateMachine<>();
4646
sm.addAll(Color.class, true, true);
4747

@@ -142,4 +142,4 @@ public enum Color implements State {
142142
public enum ZState implements State {
143143
One, Two, Three, Four, Five
144144
}
145-
}
145+
}

0 commit comments

Comments
 (0)