}
/** Tests the {@link Complex#doubleValue()} method. */
public void testDoubleValue() {
Complex c = new Complex(Math.random() * 100, Math.random() * 100);
assertEquals(c.doubleValue(), c.getReal());
}
/** Tests the {@link Complex#floatValue()} method. */
public void testFloatValue() {
Complex c = new Complex(Math.random() * 100, Math.random() * 100);