Skip to content

Commit d5ac9d4

Browse files
committed
fix: improve coverage on publisher-subscriber design pattern (iluwatar#2898)
1 parent 208ca21 commit d5ac9d4

File tree

1 file changed

+13
-0
lines changed
  • publish-subscribe/src/test/java/com/iluwatar/publish/subscribe

1 file changed

+13
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.iluwatar.publish.subscribe;
2+
3+
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
4+
5+
import org.junit.jupiter.api.Test;
6+
7+
public class AppTest {
8+
9+
@Test
10+
void shouldExecuteApplicationWithoutException() {
11+
assertDoesNotThrow(() -> App.main(new String[]{}));
12+
}
13+
}

0 commit comments

Comments
 (0)