* Expected: must throw <code>NullPointerException</code>
*/
public final void testECPoint02() {
// test case 1: x is null
try {
new ECPoint(null, BigInteger.ZERO);
fail("#1: Expected NPE not thrown");
} catch (NullPointerException ok) {
}
// test case 2: y is null
try {
new ECPoint(BigInteger.ZERO, null);
fail("#2: Expected NPE not thrown");
} catch (NullPointerException ok) {
}
// test case 3: both : x and y are null
try {
new ECPoint(null, null);
fail("#3: Expected NPE not thrown");
} catch (NullPointerException ok) {
}
}