|
|
@@ -19,7 +19,7 @@ public final class DifferenceOfSquaresCalculatorTest {
|
|
19
|
19
|
assertEquals(expected, actual);
|
|
20
|
20
|
}
|
|
21
|
21
|
|
|
22
|
|
- @Ignore
|
|
|
22
|
+ @Ignore("Remove to run test")
|
|
23
|
23
|
@Test
|
|
24
|
24
|
public void testSquareOfSum10() {
|
|
25
|
25
|
final int expected = 3025;
|
|
|
@@ -27,7 +27,7 @@ public final class DifferenceOfSquaresCalculatorTest {
|
|
27
|
27
|
assertEquals(expected, actual);
|
|
28
|
28
|
}
|
|
29
|
29
|
|
|
30
|
|
- @Ignore
|
|
|
30
|
+ @Ignore("Remove to run test")
|
|
31
|
31
|
@Test
|
|
32
|
32
|
public void testSquareOfSum100() {
|
|
33
|
33
|
final int expected = 25502500;
|
|
|
@@ -35,7 +35,7 @@ public final class DifferenceOfSquaresCalculatorTest {
|
|
35
|
35
|
assertEquals(expected, actual);
|
|
36
|
36
|
}
|
|
37
|
37
|
|
|
38
|
|
- @Ignore
|
|
|
38
|
+ @Ignore("Remove to run test")
|
|
39
|
39
|
@Test
|
|
40
|
40
|
public void testSumOfSquares5() {
|
|
41
|
41
|
final int expected = 55;
|
|
|
@@ -43,7 +43,7 @@ public final class DifferenceOfSquaresCalculatorTest {
|
|
43
|
43
|
assertEquals(expected, actual);
|
|
44
|
44
|
}
|
|
45
|
45
|
|
|
46
|
|
- @Ignore
|
|
|
46
|
+ @Ignore("Remove to run test")
|
|
47
|
47
|
@Test
|
|
48
|
48
|
public void testSumOfSquares10() {
|
|
49
|
49
|
final int expected = 385;
|
|
|
@@ -51,7 +51,7 @@ public final class DifferenceOfSquaresCalculatorTest {
|
|
51
|
51
|
assertEquals(expected, actual);
|
|
52
|
52
|
}
|
|
53
|
53
|
|
|
54
|
|
- @Ignore
|
|
|
54
|
+ @Ignore("Remove to run test")
|
|
55
|
55
|
@Test
|
|
56
|
56
|
public void testSumOfSquares100() {
|
|
57
|
57
|
final int expected = 338350;
|
|
|
@@ -59,7 +59,7 @@ public final class DifferenceOfSquaresCalculatorTest {
|
|
59
|
59
|
assertEquals(expected, actual);
|
|
60
|
60
|
}
|
|
61
|
61
|
|
|
62
|
|
- @Ignore
|
|
|
62
|
+ @Ignore("Remove to run test")
|
|
63
|
63
|
@Test
|
|
64
|
64
|
public void testDifferenceOfSquares0() {
|
|
65
|
65
|
final int expected = 0;
|
|
|
@@ -67,7 +67,7 @@ public final class DifferenceOfSquaresCalculatorTest {
|
|
67
|
67
|
assertEquals(expected, actual);
|
|
68
|
68
|
}
|
|
69
|
69
|
|
|
70
|
|
- @Ignore
|
|
|
70
|
+ @Ignore("Remove to run test")
|
|
71
|
71
|
@Test
|
|
72
|
72
|
public void testDifferenceOfSquares5() {
|
|
73
|
73
|
final int expected = 170;
|
|
|
@@ -75,7 +75,7 @@ public final class DifferenceOfSquaresCalculatorTest {
|
|
75
|
75
|
assertEquals(expected, actual);
|
|
76
|
76
|
}
|
|
77
|
77
|
|
|
78
|
|
- @Ignore
|
|
|
78
|
+ @Ignore("Remove to run test")
|
|
79
|
79
|
@Test
|
|
80
|
80
|
public void testDifferenceOfSquares10() {
|
|
81
|
81
|
final int expected = 2640;
|
|
|
@@ -83,7 +83,7 @@ public final class DifferenceOfSquaresCalculatorTest {
|
|
83
|
83
|
assertEquals(expected, actual);
|
|
84
|
84
|
}
|
|
85
|
85
|
|
|
86
|
|
- @Ignore
|
|
|
86
|
+ @Ignore("Remove to run test")
|
|
87
|
87
|
@Test
|
|
88
|
88
|
public void testDifferenceOfSquares100() {
|
|
89
|
89
|
final int expected = 25164150;
|