()
| 83 | |
| 84 | // Testing the function abs, assertEqual test |
| 85 | @Test |
| 86 | void abs() { |
| 87 | FFT.Complex complex1 = new FFT.Complex(2.0, 3.0); |
| 88 | double abs = complex1.abs(); |
| 89 | assertEquals(Math.sqrt(13), abs); |
| 90 | } |
| 91 | |
| 92 | // Testing the function divide complex, assertEqual test. |
| 93 | @Test |
no test coverage detected