diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2020-10-29 12:44:07 +0100 |
---|---|---|
committer | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2020-10-29 12:44:07 +0100 |
commit | ca0191d050b3dac6e65815ad5662ed8e796ef9d9 (patch) | |
tree | 6690d0d9d771f3033e4106d3b22d025602571cb2 /src/net/gcdc/asn1/test/UperEncodeIntegerConstrainedTest.java | |
parent | specification added, test fixed (diff) | |
download | UIC-barcode-ca0191d050b3dac6e65815ad5662ed8e796ef9d9.tar UIC-barcode-ca0191d050b3dac6e65815ad5662ed8e796ef9d9.tar.gz UIC-barcode-ca0191d050b3dac6e65815ad5662ed8e796ef9d9.tar.bz2 UIC-barcode-ca0191d050b3dac6e65815ad5662ed8e796ef9d9.tar.lz UIC-barcode-ca0191d050b3dac6e65815ad5662ed8e796ef9d9.tar.xz UIC-barcode-ca0191d050b3dac6e65815ad5662ed8e796ef9d9.tar.zst UIC-barcode-ca0191d050b3dac6e65815ad5662ed8e796ef9d9.zip |
Diffstat (limited to 'src/net/gcdc/asn1/test/UperEncodeIntegerConstrainedTest.java')
-rw-r--r-- | src/net/gcdc/asn1/test/UperEncodeIntegerConstrainedTest.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/net/gcdc/asn1/test/UperEncodeIntegerConstrainedTest.java b/src/net/gcdc/asn1/test/UperEncodeIntegerConstrainedTest.java index 9450406..6c6a4af 100644 --- a/src/net/gcdc/asn1/test/UperEncodeIntegerConstrainedTest.java +++ b/src/net/gcdc/asn1/test/UperEncodeIntegerConstrainedTest.java @@ -4,6 +4,7 @@ import static org.junit.Assert.assertEquals; import java.util.logging.Level; +import net.gcdc.asn1.datatypes.FieldOrder; import net.gcdc.asn1.datatypes.IntRange; import net.gcdc.asn1.datatypes.Sequence; import net.gcdc.asn1.uper.UperEncoder; @@ -26,12 +27,15 @@ public class UperEncodeIntegerConstrainedTest { @Sequence public static class TestRecord { + @FieldOrder(order = 0) @IntRange(minValue=1, maxValue=999) public Long value1; + @FieldOrder(order = 1) @IntRange(minValue=0, maxValue=999) public Long value2; + @FieldOrder(order = 2) @IntRange(minValue=63, maxValue=999) public Long value3; |