We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 208ca21 commit d5ac9d4Copy full SHA for d5ac9d4
publish-subscribe/src/test/java/com/iluwatar/publish/subscribe/AppTest.java
@@ -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