mirror of https://github.com/apache/poi.git
another missing class
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893449 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ac83ff11f4
commit
e7fecdc001
|
@ -19,6 +19,7 @@ package org.apache.poi.poifs.crypt.dsig;
|
||||||
import org.etsi.uri.x01903.v13.*;
|
import org.etsi.uri.x01903.v13.*;
|
||||||
import org.etsi.uri.x01903.v14.ValidationDataType;
|
import org.etsi.uri.x01903.v14.ValidationDataType;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.w3.x2000.x09.xmldsig.SignatureValueType;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||||
|
|
||||||
|
@ -41,6 +42,8 @@ public class TestNecessaryClasses {
|
||||||
assertNotNull(sigPolicyQualifiersListType);
|
assertNotNull(sigPolicyQualifiersListType);
|
||||||
ValidationDataType validationDataType = ValidationDataType.Factory.newInstance();
|
ValidationDataType validationDataType = ValidationDataType.Factory.newInstance();
|
||||||
assertNotNull(validationDataType);
|
assertNotNull(validationDataType);
|
||||||
|
SignatureValueType signatureValueType = SignatureValueType.Factory.newInstance();
|
||||||
|
assertNotNull(signatureValueType);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue