From 5f77c0ec94fd984001d5792321892b71e1b2b342 Mon Sep 17 00:00:00 2001 From: shaikkhajaibrahim Date: Sat, 28 Mar 2026 20:10:06 +0530 Subject: [PATCH 1/4] Added new test --- src/test/java/com/example/AppTest.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/test/java/com/example/AppTest.java b/src/test/java/com/example/AppTest.java index 474710c..e85c480 100644 --- a/src/test/java/com/example/AppTest.java +++ b/src/test/java/com/example/AppTest.java @@ -35,4 +35,12 @@ public void testApp() { assertTrue( true ); } + + /** + * Rigourous Test :-) + */ + public void testAppOther() + { + assertTrue( true ); + } } From 3c787e5a2a77688a1f08b798972ba64d9f8e9747 Mon Sep 17 00:00:00 2001 From: shaikkhajaibrahim Date: Sat, 28 Mar 2026 20:12:42 +0530 Subject: [PATCH 2/4] test --- src/test/java/com/example/AppTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/example/AppTest.java b/src/test/java/com/example/AppTest.java index e85c480..d47a507 100644 --- a/src/test/java/com/example/AppTest.java +++ b/src/test/java/com/example/AppTest.java @@ -41,6 +41,6 @@ public void testApp() */ public void testAppOther() { - assertTrue( true ); + assertTrue( false ); } } From 84b48bc74678d9b026de00b66f4e1a55b9beb8b1 Mon Sep 17 00:00:00 2001 From: shaikkhajaibrahim Date: Sat, 28 Mar 2026 20:16:32 +0530 Subject: [PATCH 3/4] fixed pr --- .github/workflows/pr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 065dd77..98b8dd1 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -14,7 +14,7 @@ jobs: - name: get the code uses: actions/checkout@v6 - name: package the code - run: mvn package + run: mvn --batch-mode -Dmaven.test.failure.ignore=true test - name: publish test results uses: EnricoMi/publish-unit-test-result-action@v2 with: From e36beda000eeeb1ab3986691e24d6cad308336fb Mon Sep 17 00:00:00 2001 From: shaikkhajaibrahim Date: Sat, 28 Mar 2026 20:17:52 +0530 Subject: [PATCH 4/4] added changes --- src/test/java/com/example/AppTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/example/AppTest.java b/src/test/java/com/example/AppTest.java index d47a507..e85c480 100644 --- a/src/test/java/com/example/AppTest.java +++ b/src/test/java/com/example/AppTest.java @@ -41,6 +41,6 @@ public void testApp() */ public void testAppOther() { - assertTrue( false ); + assertTrue( true ); } }