add more classes

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893434 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-09-19 10:15:58 +00:00
parent 83d837dc39
commit 3edd698613
1 changed files with 7 additions and 3 deletions

View File

@ -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);
}