We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10060f0 commit faa841fCopy full SHA for faa841f
1 file changed
tema1_2_ejer3/src/test/java/es/codeurjc/test/complex/ComplexAbsTest.java
@@ -19,15 +19,16 @@ public void absoluteTest(Complex complex, double result) {
19
}
20
21
public static Collection<Object[]> values() {
22
- Object[][] data = {
23
- { new Complex(0,0),0 },
24
- { new Complex(1,1),1.41421},
25
- { new Complex(2,2),2.82843},
26
- { new Complex(5,5),7.07107},
27
- { new Complex(10,10),14.1421},
28
- { new Complex(10,1),10.0498},
29
- { new Complex(20,2),20.099}
30
- };
+
+ Object[][] data = {
+ { new Complex(0,0) ,0 },
+ { new Complex(1,1) ,1.41421 },
+ { new Complex(2,2) ,2.82843 },
+ { new Complex(5,5) ,7.07107 },
+ { new Complex(10,10),14.1421 },
+ { new Complex(10,1) ,10.0498 },
+ { new Complex(20,2) ,20.099 }
31
+ };
32
33
return Arrays.asList(data);
34
0 commit comments