|
|
@ -0,0 +1,19 @@ |
|
|
|
package com.ugsbo.complexnumcalc; |
|
|
|
|
|
|
|
import static org.junit.Assert.assertTrue; |
|
|
|
|
|
|
|
import org.junit.Test; |
|
|
|
|
|
|
|
public class MultiplyComplexNumbersTest { |
|
|
|
|
|
|
|
@Test |
|
|
|
public void multiplyTwoComplexNumbersWithoutImaginaryPart() { |
|
|
|
ComplexNumber firstFaktor = new ComplexNumber(Double.valueOf(5), Double.valueOf(0)); |
|
|
|
ComplexNumber secoundFaktor = new ComplexNumber(Double.valueOf(6), Double.valueOf(0)); |
|
|
|
ComplexNumber expected = new ComplexNumber(Double.valueOf(30), Double.valueOf(0)); |
|
|
|
|
|
|
|
ComplexNumber product = firstFaktor.multiply(secoundFaktor); |
|
|
|
|
|
|
|
assertTrue("The product is not as expected", product.equals(expected)); |
|
|
|
} |
|
|
|
} |