diff options
Diffstat (limited to 'database/jdbc/demo/src/test/java/com')
| -rw-r--r-- | database/jdbc/demo/src/test/java/com/example/jdbc/AppTest.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/database/jdbc/demo/src/test/java/com/example/jdbc/AppTest.java b/database/jdbc/demo/src/test/java/com/example/jdbc/AppTest.java new file mode 100644 index 0000000..ccadfcc --- /dev/null +++ b/database/jdbc/demo/src/test/java/com/example/jdbc/AppTest.java @@ -0,0 +1,19 @@ +package com.example.jdbc; + +import static org.junit.jupiter.api.Assertions.assertTrue; + +import org.junit.jupiter.api.Test; + +/** + * Unit test for simple App. + */ +public class AppTest { + + /** + * Rigorous Test :-) + */ + @Test + public void shouldAnswerWithTrue() { + assertTrue(true); + } +} |
