aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/tls/test/TestTlsClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/tls/test/TestTlsClient.java')
-rw-r--r--libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/tls/test/TestTlsClient.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/tls/test/TestTlsClient.java b/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/tls/test/TestTlsClient.java
deleted file mode 100644
index affc116e4..000000000
--- a/libraries/spongycastle/core/src/test/java/org/spongycastle/crypto/tls/test/TestTlsClient.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package org.spongycastle.crypto.tls.test;
-
-import java.io.IOException;
-
-import org.spongycastle.crypto.tls.DefaultTlsClient;
-import org.spongycastle.crypto.tls.TlsAuthentication;
-
-public class TestTlsClient
- extends DefaultTlsClient
-{
- private final TlsAuthentication authentication;
-
- TestTlsClient(TlsAuthentication authentication)
- {
- this.authentication = authentication;
- }
-
- public TlsAuthentication getAuthentication()
- throws IOException
- {
- return authentication;
- }
-}