TLS support - configurable passwords
[openflowjava.git] / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / core / SslKeyStoreTest.java
index c75fdee9b2f4f3cf7c4b4fceb3dcdedcecd52b84..ca6826f00dfff26c100c11515560457232585326 100644 (file)
@@ -9,7 +9,6 @@
 package org.opendaylight.openflowjava.protocol.impl.core;
 
 import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.assertTrue;
 
 import java.io.InputStream;
 
@@ -53,24 +52,4 @@ public class SslKeyStoreTest {
         assertNotNull( inputStream );
         inputStream.close();
     }
-
-    /**
-     * Test certificate password retrieval
-     */
-    @Test
-    public void testGetCertificatePassword() {
-        char[] password = SslKeyStore.getCertificatePassword();
-        assertNotNull(password);
-        assertTrue (password.length>0) ;
-    }
-
-    /**
-     * Test keystore password retrieval
-     */
-    @Test
-    public void testGetKeyStorePassword() {
-        char[] password = SslKeyStore.getKeyStorePassword() ;
-        assertNotNull(password);
-        assertTrue (password.length>0) ;
-    }
-}
\ No newline at end of file
+}