You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Constructor should throw IllegalArgumentException for NaN slope");
26
+
assertThrows(IllegalArgumentException.class, () -> newAffineConverter(Double.NaN, 3.0), "Constructor should throw IllegalArgumentException for NaN slope");
29
27
}
30
28
31
29
@Test
32
30
voidtestConvertWithNegativeValues() {
33
31
assertEquals(-1.0, converter.convert(-2.0), "Negative input should convert correctly");
0 commit comments