]> source.dussan.org Git - poi.git/commitdiff
another missing class
authorPJ Fanning <fanningpj@apache.org>
Sun, 19 Sep 2021 18:21:34 +0000 (18:21 +0000)
committerPJ Fanning <fanningpj@apache.org>
Sun, 19 Sep 2021 18:21:34 +0000 (18:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893449 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/test/java/org/apache/poi/poifs/crypt/dsig/TestNecessaryClasses.java

index 0742dbfce96b63d9fb938f1454ea8e02aee387f6..086dfb82b4ff5c7f44eef682043d2be675760e64 100644 (file)
@@ -19,6 +19,7 @@ package org.apache.poi.poifs.crypt.dsig;
 import org.etsi.uri.x01903.v13.*;
 import org.etsi.uri.x01903.v14.ValidationDataType;
 import org.junit.jupiter.api.Test;
+import org.w3.x2000.x09.xmldsig.SignatureValueType;
 
 import static org.junit.jupiter.api.Assertions.assertNotNull;
 
@@ -41,6 +42,8 @@ public class TestNecessaryClasses {
         assertNotNull(sigPolicyQualifiersListType);
         ValidationDataType validationDataType = ValidationDataType.Factory.newInstance();
         assertNotNull(validationDataType);
+        SignatureValueType signatureValueType = SignatureValueType.Factory.newInstance();
+        assertNotNull(signatureValueType);
     }
 
 }