From 7cb752aaf746dc0b473afeb9e892b7fbc12666c5 Mon Sep 17 00:00:00 2001 From: Roberto Tyley Date: Mon, 14 Jul 2014 22:38:01 +0100 Subject: Execute become-spongy.sh https://github.com/rtyley/spongycastle/blob/3040af/become-spongy.sh --- .../org/bouncycastle/pkcs/test/BCTestSetup.java | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 pkix/src/test/java/org/bouncycastle/pkcs/test/BCTestSetup.java (limited to 'pkix/src/test/java/org/bouncycastle/pkcs/test/BCTestSetup.java') diff --git a/pkix/src/test/java/org/bouncycastle/pkcs/test/BCTestSetup.java b/pkix/src/test/java/org/bouncycastle/pkcs/test/BCTestSetup.java deleted file mode 100644 index 7a13561a..00000000 --- a/pkix/src/test/java/org/bouncycastle/pkcs/test/BCTestSetup.java +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2005 The Legion Of The Bouncy Castle (http://www.bouncycastle.org) -package org.bouncycastle.pkcs.test; - -import java.security.Security; - -import junit.extensions.TestSetup; -import junit.framework.Test; - -class BCTestSetup - extends TestSetup -{ - public BCTestSetup(Test test) - { - super(test); - } - - protected void setUp() - { - Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider()); - } - - protected void tearDown() - { - Security.removeProvider("BC"); - } -} -- cgit v1.2.3