From 400a3855daf0fafecdb7f2df4897d893ff87d326 Mon Sep 17 00:00:00 2001 From: Ravi Date: Wed, 24 Feb 2021 06:46:07 +0530 Subject: [PATCH 1/3] Delete CalculatorTest.java --- src/test/java/mypackage/CalculatorTest.java | 26 --------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/test/java/mypackage/CalculatorTest.java diff --git a/src/test/java/mypackage/CalculatorTest.java b/src/test/java/mypackage/CalculatorTest.java deleted file mode 100644 index 9e6f3d27..00000000 --- a/src/test/java/mypackage/CalculatorTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package mypackage; - -import org.junit.Test; -import static org.hamcrest.CoreMatchers.is; -import static org.junit.Assert.assertThat; - -public class CalculatorTest { - @Test - public void twoAndThreeIsFive() throws Exception { - final long result = new Calculator().addFucn(2, 3); - assertThat(result, is(5L)); - } - - @Test - public void threeMinusTwoIsOne() throws Exception { - final long result = new Calculator().subFucn(2, 3); - assertThat(result, is(1L)); - } - - @Test - public void threeXThreeIsNine() throws Exception { - final long result = new Calculator().mulFucn(3, 3); - assertThat(result, is(9L)); - } - -} \ No newline at end of file From 8f52a3e7cebed2aaf39de2b051dbf5a9a80f54c1 Mon Sep 17 00:00:00 2001 From: Ravi Date: Mon, 17 Jan 2022 14:43:55 +0530 Subject: [PATCH 2/3] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ccfe8f9c..6d1e9504 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 com.web.cal - WebAppCal + webapp war 0.0.1 WebAppCal Maven Webapp From 3ba446d3e9251c98a6e454f0ed656dbf01576620 Mon Sep 17 00:00:00 2001 From: Ravi Date: Tue, 18 Jan 2022 16:44:33 +0530 Subject: [PATCH 3/3] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6d1e9504..3b862134 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.web.cal webapp war - 0.0.1 + 0.4 WebAppCal Maven Webapp http://maven.apache.org