diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-05-03 14:32:16 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-05-03 14:32:16 +0530 |
| commit | a299226547b15de587dad614f07ce459d01f3601 (patch) | |
| tree | a917b98c412123ad4c5362bbb6d752dc8007e047 /database/jdbc/demo/src/test/java/com/example | |
| parent | cdae21a9987ae947f58662ac1e7c2d02a469629a (diff) | |
Added jdbc demo sample application
Diffstat (limited to 'database/jdbc/demo/src/test/java/com/example')
| -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); + } +} |
