We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed6e664 commit 5d2aabaCopy full SHA for 5d2aaba
src/test/java/com/codacy/utils/MathTest.java
@@ -8,6 +8,14 @@ public class MathTest {
8
@Test
9
public void shouldAddNumbers() {
10
Math math = new Math(23);
11
+
12
13
+ assertEquals(7, math.magicAdd(3, 4));
14
+ assertEquals(8, math.magicAdd(4, 4));
15
+ }
16
+ public void shouldAddNumbers2() {
17
+ Math math = new Math2(23);
18
19
20
assertEquals(7, math.magicAdd(3, 4));
21
assertEquals(8, math.magicAdd(4, 4));
0 commit comments