diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 04b27bd..f86e7bb 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,10 +4,7 @@
-
-
-
-
+
@@ -38,7 +35,7 @@
"kotlin-language-version-configured": "true"
}
}]]>
-
+
@@ -65,8 +62,8 @@
-
+
@@ -78,6 +75,19 @@
1785351688906
+
+
+ 1785410404811
+
+
+
+ 1785410404811
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/test/java/NegativeCalculatorTest.java b/src/test/java/NegativeCalculatorTest.java
index db8220a..ea65b6e 100644
--- a/src/test/java/NegativeCalculatorTest.java
+++ b/src/test/java/NegativeCalculatorTest.java
@@ -12,7 +12,8 @@ public class NegativeCalculatorTest {
return new Object [][]{
{"+", String.valueOf(Integer.MAX_VALUE), "1"},
{"+", String.valueOf(Integer.MIN_VALUE), "-1"},
- {"*", String.valueOf(Integer.MAX_VALUE), "2"},
+ {"*", String.valueOf((double)Integer.MAX_VALUE+1), "2"},
+ {"*", String.valueOf((double)Integer.MIN_VALUE-1), "2"},
{"/", "10", "0"},
diff --git a/src/test/java/PositiveCalculatorTest.java b/src/test/java/PositiveCalculatorTest.java
index 5ea3ee1..969b58a 100644
--- a/src/test/java/PositiveCalculatorTest.java
+++ b/src/test/java/PositiveCalculatorTest.java
@@ -28,7 +28,7 @@ public class PositiveCalculatorTest {
{"+", String.valueOf(Integer.MAX_VALUE - 1), "1", (double)Integer.MAX_VALUE},
{"+", String.valueOf(Integer.MIN_VALUE + 1), "-1", (double)Integer.MIN_VALUE},
- {"*", String.valueOf(Integer.MAX_VALUE), "1", (double)Integer.MAX_VALUE},
+ {"*", String.valueOf(Integer.MIN_VALUE), "1", (double)Integer.MIN_VALUE},
{"/", String.valueOf(Integer.MAX_VALUE), "2", (double)Integer.MAX_VALUE/2},
};
}
diff --git a/target/test-classes/NegativeCalculatorTest.class b/target/test-classes/NegativeCalculatorTest.class
index 2eadf5d..fe1d92c 100644
Binary files a/target/test-classes/NegativeCalculatorTest.class and b/target/test-classes/NegativeCalculatorTest.class differ
diff --git a/target/test-classes/PositiveCalculatorTest.class b/target/test-classes/PositiveCalculatorTest.class
index 85a0fd3..83e254d 100644
Binary files a/target/test-classes/PositiveCalculatorTest.class and b/target/test-classes/PositiveCalculatorTest.class differ