-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathSquareEqTest.java
More file actions
272 lines (243 loc) · 7.79 KB
/
SquareEqTest.java
File metadata and controls
272 lines (243 loc) · 7.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import org.junit.Test;
import static org.junit.Assert.assertArrayEquals;
/**
* Тесты для решения квадратного уравнения
*/
public class SquareEqTest {
public static final double DELTA = 0.000001;
// Первый (самый простой) тест
//-->
@Test
public void testSimple() {
// assertEquals( ожидаемое_значение, вычисленное значение )
// сообщение_если_значения_не_равны, ..., ...
// a*x^2 + b*x + c = 0
assertArrayEquals("x^2 = 0",
new double[]{0.0},
SquareEq.solve(1.0, 0.0, 0.0), DELTA);
}
//<--
// Рассматриваем случай, когда два решения уравнения
//-->
@Test
public void twoSolutions() {
assertArrayEquals("x^2 - 1 = 0",
new double[]{-1.0, 1.0},
SquareEq.solve(1.0, 0.0, -1.0), DELTA);
assertArrayEquals("x^2 - 4 = 0",
new double[]{-2.0, 2.0},
SquareEq.solve(1.0, 0.0, -4.0), DELTA);
}
/**
* Отдельный тест когда b != 0
*/
@Test
public void twoSolutionsBNotNull() {
// (x-1)(x-2) = x^2 - 3x + 2
assertArrayEquals("x^2 - 3x + 2 = 0",
new double[]{1.0, 2.0},
SquareEq.solve(1.0, -3.0, 2.0), DELTA);
}
//<--
/**
* Квадратные уравнения с одним решением
*/
@Test
public void oneSolution() {
assertArrayEquals("(x+1)^2 = x^2 + 2*x + 1 = 0",
new double[]{-1.0},
SquareEq.solve(1.0, 2.0, 1.0), DELTA);
}
/**
* Уравнения с дискриминантом меньше 0
* у которых нет решений в действ. числах
*/
@Test
public void testNoSolutions() {
assertArrayEquals("x^2 + 1 = 0",
new double[]{},
SquareEq.solve(1.0, 0.0, 1.0), DELTA);
assertArrayEquals("3x^2 + 10 = 0",
new double[]{},
SquareEq.solve(3.0, 0.0, 10.0), DELTA);
}
/**
* Вырожденный случай: a = 0
* Квадратное уравнение превращается в линейное
*/
@Test
public void testZeroA() {
assertArrayEquals("2x + 1 = 0",
new double[]{-0.5},
SquareEq.solve(0.0, 2.0, 1.0), DELTA);
assertArrayEquals("x - 10 = 0",
new double[]{10.0},
SquareEq.solve(0.0, 1.0, -10.0), DELTA);
}
// Тестируем вырожденный случай: a = 0, b = 0
//-->
@Test
public void testZeroAZeroB() {
assertArrayEquals("1 = 0",
new double[]{},
SquareEq.solve(0.0, 0.0, 1.0), DELTA);
}
//<--
// Вырожденный случай: a = 0, b = 0, c = 0
// Ожидаемое исключение
//-->
@Test(expected = AnyXException.class)
public void testZeroAZeroBZeroC() {
assertArrayEquals("0 = 0",
new double[]{},
SquareEq.solve(0.0, 0.0, 0.0), DELTA);
}
//<--
// Additional edge case tests for 100% coverage
/**
* Test DELTA constant is correctly defined
*/
@Test
public void testDeltaConstant() {
assertTrue("DELTA should be a very small positive number",
SquareEq.DELTA > 0 && SquareEq.DELTA < 0.001);
}
/**
* Test discriminant D > 0 with negative coefficients
*/
@Test
public void testTwoSolutionsNegativeCoefficients() {
// -x^2 + 1 = 0 => x = -1, 1
assertArrayEquals("-x^2 + 1 = 0",
new double[]{-1.0, 1.0},
SquareEq.solve(-1.0, 0.0, 1.0), DELTA);
}
/**
* Test discriminant D = 0 with larger coefficients
*/
@Test
public void testOneSolutionLargerCoefficients() {
// 4x^2 + 4x + 1 = 0 => (2x+1)^2 = 0 => x = -0.5
assertArrayEquals("4x^2 + 4x + 1 = 0",
new double[]{-0.5},
SquareEq.solve(4.0, 4.0, 1.0), DELTA);
}
/**
* Test discriminant D < 0 with negative coefficients
*/
@Test
public void testNoSolutionsNegativeCoefficients() {
// -x^2 - 1 = 0 => no real solutions
assertArrayEquals("-x^2 - 1 = 0",
new double[]{},
SquareEq.solve(-1.0, 0.0, -1.0), DELTA);
}
/**
* Test with very small non-zero a (near DELTA boundary)
*/
@Test
public void testVerySmallA() {
// a is very small but non-zero
double smallA = SquareEq.DELTA * 10;
double[] result = SquareEq.solve(smallA, 1.0, 0.0);
assertTrue(result.length >= 1);
}
/**
* Test with a value just above DELTA threshold
*/
@Test
public void testAJustAboveDelta() {
double a = SquareEq.DELTA * 2;
double[] result = SquareEq.solve(a, 0.0, -a);
assertEquals(2, result.length);
}
/**
* Test linear equation with negative b
*/
@Test
public void testLinearNegativeB() {
// -2x + 4 = 0 => x = 2
assertArrayEquals("-2x + 4 = 0",
new double[]{2.0},
SquareEq.solve(0.0, -2.0, 4.0), DELTA);
}
/**
* Test quadratic with all positive coefficients D > 0
*/
@Test
public void testAllPositiveCoefficients() {
// x^2 - 5x + 6 = 0 => (x-2)(x-3) = 0 => x = 2, 3
assertArrayEquals("x^2 - 5x + 6 = 0",
new double[]{2.0, 3.0},
SquareEq.solve(1.0, -5.0, 6.0), DELTA);
}
/**
* Test quadratic with large coefficients
*/
@Test
public void testLargeCoefficients() {
// 100x^2 - 100 = 0 => x^2 = 1 => x = -1, 1
assertArrayEquals("100x^2 - 100 = 0",
new double[]{-1.0, 1.0},
SquareEq.solve(100.0, 0.0, -100.0), DELTA);
}
/**
* Test with fractional coefficients
*/
@Test
public void testFractionalCoefficients() {
// 0.5x^2 - 0.5 = 0 => x = -1, 1
assertArrayEquals("0.5x^2 - 0.5 = 0",
new double[]{-1.0, 1.0},
SquareEq.solve(0.5, 0.0, -0.5), DELTA);
}
/**
* Test discriminant exactly zero (edge case)
*/
@Test
public void testDiscriminantExactlyZero() {
// x^2 - 2x + 1 = 0 => (x-1)^2 = 0 => D = 4 - 4 = 0
assertArrayEquals("x^2 - 2x + 1 = 0",
new double[]{1.0},
SquareEq.solve(1.0, -2.0, 1.0), DELTA);
}
/**
* Test with b = 0 and negative c (D > 0)
*/
@Test
public void testBZeroNegativeC() {
// x^2 - 9 = 0 => x = -3, 3
assertArrayEquals("x^2 - 9 = 0",
new double[]{-3.0, 3.0},
SquareEq.solve(1.0, 0.0, -9.0), DELTA);
}
/**
* Test with c = 0 (one root at 0)
*/
@Test
public void testCZero() {
// x^2 - x = 0 => x(x-1) = 0 => x = 0, 1
assertArrayEquals("x^2 - x = 0",
new double[]{0.0, 1.0},
SquareEq.solve(1.0, -1.0, 0.0), DELTA);
}
/**
* Test with negative a and positive b
*/
@Test
public void testNegativeAPositiveB() {
// -x^2 + 4x - 3 = 0 => -(x-1)(x-3) = 0 => x = 1, 3
double[] result = SquareEq.solve(-1.0, 4.0, -3.0);
assertEquals(2, result.length);
}
/**
* Test b near DELTA threshold (treated as zero)
*/
@Test
public void testBNearDelta() {
double smallB = SquareEq.DELTA / 2;
// 0*x^2 + smallB*x + 1 = 0 where smallB is treated as 0
double[] result = SquareEq.solve(0.0, smallB, 1.0);
assertEquals(0, result.length); // No solutions when a=0, b~=0, c!=0
}
}