summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/uic/barcode/asn1/test/UperEncodeBooleanTest.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/java/org/uic/barcode/asn1/test/UperEncodeBooleanTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/java/org/uic/barcode/asn1/test/UperEncodeBooleanTest.java b/src/test/java/org/uic/barcode/asn1/test/UperEncodeBooleanTest.java
index dea2716..de39e5c 100644
--- a/src/test/java/org/uic/barcode/asn1/test/UperEncodeBooleanTest.java
+++ b/src/test/java/org/uic/barcode/asn1/test/UperEncodeBooleanTest.java
@@ -43,7 +43,7 @@ public class UperEncodeBooleanTest {
}
@Test public void testTrue() throws IllegalArgumentException, IllegalAccessException {
- TestRecord record = new TestRecord(new Boolean(true));
+ TestRecord record = new TestRecord(Boolean.valueOf(true));
byte[] encoded = UperEncoder.encode(record);
String hex = UperEncoder.hexStringFromBytes(encoded);
UperEncoder.logger.log(Level.FINEST,String.format("data hex: %s", hex));
@@ -51,7 +51,7 @@ public class UperEncodeBooleanTest {
}
@Test public void testFalse() throws IllegalArgumentException, IllegalAccessException {
- TestRecord record = new TestRecord(new Boolean(false));
+ TestRecord record = new TestRecord(Boolean.valueOf(false));
byte[] encoded = UperEncoder.encode(record);
String hex = UperEncoder.hexStringFromBytes(encoded);
UperEncoder.logger.log(Level.FINEST,String.format("data hex: %s", hex));
@@ -59,7 +59,7 @@ public class UperEncodeBooleanTest {
}
@Test public void testDecodeTrue() throws IllegalArgumentException, IllegalAccessException {
- TestRecord record = new TestRecord(new Boolean(true));
+ TestRecord record = new TestRecord(Boolean.valueOf(true));
byte[] encoded = UperEncoder.encode(record);
String hex = UperEncoder.hexStringFromBytes(encoded);
UperEncoder.logger.log(Level.FINEST,String.format("data hex: %s", hex));
@@ -70,7 +70,7 @@ public class UperEncodeBooleanTest {
}
@Test public void testDecodeFalse() throws IllegalArgumentException, IllegalAccessException {
- TestRecord record = new TestRecord(new Boolean(false));
+ TestRecord record = new TestRecord(Boolean.valueOf(false));
byte[] encoded = UperEncoder.encode(record);
String hex = UperEncoder.hexStringFromBytes(encoded);
UperEncoder.logger.log(Level.FINEST,String.format("data hex: %s", hex));