}
/** Tests the {@link Complex#intValue()} method. */
public void testIntValue() {
Complex c = new Complex(Math.random() * 100, Math.random() * 100);
assertEquals(c.intValue(), (int) c.getReal());
}
/** Tests the {@link Complex#longValue()} method. */
public void testLongValue() {
Complex c = new Complex(Math.random() * 100, Math.random() * 100);