@Test
public void testImportKeyImplThrowsNullPointerException() throws Throwable {
byte[] encryptedKey = new byte[2];
try {
new JCESecurityModule().importKeyImpl((short) 100, "testJCESecurityModuleKeyType", encryptedKey, new SecureDESKey(
(short) 100, "testJCESecurityModuleKeyType", "testJCESecurityModuleKeyHexString1",
"testJCESecurityModuleKeyCheckValueHexString1"), true);
fail("Expected NullPointerException to be thrown");
} catch (NullPointerException ex) {
assertNull("ex.getMessage()", ex.getMessage());