Skip to content

Commit

Permalink
Merge pull request #79 from UnionInternationalCheminsdeFer/fixing_test
Browse files Browse the repository at this point in the history
deprecated tests which are used for deprecated functions only.
  • Loading branch information
CGantert345 authored May 17, 2024
2 parents 27338ef + 6e6360d commit 1d4cd17
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/test/java/org/uic/barcode/test/SecurityUtilsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import java.security.spec.ECGenParameterSpec;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.uic.barcode.dynamicFrame.Constants;
import org.uic.barcode.utils.AlgorithmNameResolver;
Expand Down Expand Up @@ -60,8 +61,11 @@ public class SecurityUtilsTest {




@Test public void testFindPublicKeyProvider() {
// functions without an explicitly set provider have been deprecated in the library.
@Deprecated
@Test
@Ignore
public void testFindPublicKeyProvider() {


Provider p = null;
Expand Down Expand Up @@ -97,9 +101,11 @@ public class SecurityUtilsTest {





@Test public void testFindSignatureAlgorithmProvider() {
// functions without an explicitly set provider have been deprecated in the library.
@Deprecated
@Test
@Ignore
public void testFindSignatureAlgorithmProvider() {

Provider p = null;
boolean canSign = false;
Expand Down

0 comments on commit 1d4cd17

Please sign in to comment.