Test of getReal method, of class Complex.
()
| 67 | * Test of getReal method, of class Complex. |
| 68 | */ |
| 69 | @Test |
| 70 | public void testGetReal() |
| 71 | { |
| 72 | System.out.println("getReal"); |
| 73 | assertEquals(2.0, a.getReal(), 0.0); |
| 74 | assertEquals(3.0, b.getReal(), 0.0); |
| 75 | assertEquals(9.0, c.getReal(), 0.0); |
| 76 | assertEquals(-5.0, d.getReal(), 0.0); |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Test of getImag method, of class Complex. |