aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2021-09-19 10:15:58 +0000
committerPJ Fanning <fanningpj@apache.org>2021-09-19 10:15:58 +0000
commit3edd6986139f7d2d616b595ef962736017b40349 (patch)
tree6e5e2016bc71a12fcdf16271b160707c98d7891e
parent83d837dc39e99058d974d36b3055ee3e0d844d33 (diff)
downloadpoi-3edd6986139f7d2d616b595ef962736017b40349.tar.gz
poi-3edd6986139f7d2d616b595ef962736017b40349.zip
add more classes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893434 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--poi-ooxml/src/test/java/org/apache/poi/poifs/crypt/dsig/TestNecessaryClasses.java10
1 files changed, 7 insertions, 3 deletions
diff --git a/poi-ooxml/src/test/java/org/apache/poi/poifs/crypt/dsig/TestNecessaryClasses.java b/poi-ooxml/src/test/java/org/apache/poi/poifs/crypt/dsig/TestNecessaryClasses.java
index a793ed4912..0742dbfce9 100644
--- a/poi-ooxml/src/test/java/org/apache/poi/poifs/crypt/dsig/TestNecessaryClasses.java
+++ b/poi-ooxml/src/test/java/org/apache/poi/poifs/crypt/dsig/TestNecessaryClasses.java
@@ -16,9 +16,7 @@
==================================================================== */
package org.apache.poi.poifs.crypt.dsig;
-import org.etsi.uri.x01903.v13.DataObjectFormatType;
-import org.etsi.uri.x01903.v13.ObjectIdentifierType;
-import org.etsi.uri.x01903.v13.SignaturePolicyIdType;
+import org.etsi.uri.x01903.v13.*;
import org.etsi.uri.x01903.v14.ValidationDataType;
import org.junit.jupiter.api.Test;
@@ -31,10 +29,16 @@ public class TestNecessaryClasses {
void testProblemClasses() {
DataObjectFormatType dataObjectFormatType = DataObjectFormatType.Factory.newInstance();
assertNotNull(dataObjectFormatType);
+ IdentifierType identifierType = IdentifierType.Factory.newInstance();
+ assertNotNull(identifierType);
ObjectIdentifierType objectIdentifierType = ObjectIdentifierType.Factory.newInstance();
assertNotNull(objectIdentifierType);
+ SignedDataObjectPropertiesType signedDataObjectPropertiesType = SignedDataObjectPropertiesType.Factory.newInstance();
+ assertNotNull(signedDataObjectPropertiesType);
SignaturePolicyIdType signaturePolicyIdType = SignaturePolicyIdType.Factory.newInstance();
assertNotNull(signaturePolicyIdType);
+ SigPolicyQualifiersListType sigPolicyQualifiersListType = SigPolicyQualifiersListType.Factory.newInstance();
+ assertNotNull(sigPolicyQualifiersListType);
ValidationDataType validationDataType = ValidationDataType.Factory.newInstance();
assertNotNull(validationDataType);
}