aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ASN1UnitTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ASN1UnitTest.java')
-rw-r--r--libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ASN1UnitTest.java89
1 files changed, 0 insertions, 89 deletions
diff --git a/libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ASN1UnitTest.java b/libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ASN1UnitTest.java
deleted file mode 100644
index e71aedc14..000000000
--- a/libraries/spongycastle/core/src/test/java/org/spongycastle/asn1/test/ASN1UnitTest.java
+++ /dev/null
@@ -1,89 +0,0 @@
-package org.spongycastle.asn1.test;
-
-import org.spongycastle.asn1.ASN1Encodable;
-import org.spongycastle.util.test.SimpleTest;
-
-import java.math.BigInteger;
-
-public abstract class ASN1UnitTest
- extends SimpleTest
-{
- protected void checkMandatoryField(String name, ASN1Encodable expected, ASN1Encodable present)
- {
- if (!expected.equals(present))
- {
- fail(name + " field doesn't match.");
- }
- }
-
- protected void checkMandatoryField(String name, String expected, String present)
- {
- if (!expected.equals(present))
- {
- fail(name + " field doesn't match.");
- }
- }
-
- protected void checkMandatoryField(String name, byte[] expected, byte[] present)
- {
- if (!areEqual(expected, present))
- {
- fail(name + " field doesn't match.");
- }
- }
-
- protected void checkMandatoryField(String name, int expected, int present)
- {
- if (expected != present)
- {
- fail(name + " field doesn't match.");
- }
- }
-
- protected void checkOptionalField(String name, ASN1Encodable expected, ASN1Encodable present)
- {
- if (expected != null)
- {
- if (!expected.equals(present))
- {
- fail(name + " field doesn't match.");
- }
- }
- else if (present != null)
- {
- fail(name + " field found when none expected.");
- }
- }
-
- protected void checkOptionalField(String name, String expected, String present)
- {
- if (expected != null)
- {
- if (!expected.equals(present))
- {
- fail(name + " field doesn't match.");
- }
- }
- else if (present != null)
- {
- fail(name + " field found when none expected.");
- }
- }
-
- protected void checkOptionalField(String name, BigInteger expected, BigInteger present)
- {
- if (expected != null)
- {
- if (!expected.equals(present))
- {
- fail(name + " field doesn't match.");
- }
- }
- else if (present != null)
- {
- fail(name + " field found when none expected.");
- }
- }
-
-
-}