/**
* Test #1 for <code>getOtherPrimeInfo()</code> method<br>
* Assertion: returns array of RSAOtherPrimeInfo
*/
public final void testGetOtherPrimeInfo01() {
RSAMultiPrimePrivateCrtKeySpec ks =
new RSAMultiPrimePrivateCrtKeySpec(
BigInteger.ONE,
BigInteger.ONE,
BigInteger.ONE,
BigInteger.ONE,
BigInteger.ONE,
BigInteger.ONE,
BigInteger.ONE,
BigInteger.ONE,
opi);
assertTrue(checkOtherPrimeInfo(ks.getOtherPrimeInfo()));
}