From c31b489efe6eaa1e44a9650702c9403f3c630eb9 Mon Sep 17 00:00:00 2001 From: dswitkin Date: Wed, 1 Jul 2009 15:13:44 +0000 Subject: [PATCH] Added the second PDF 417 test to the AllPositiveBlackBoxTester. git-svn-id: https://zxing.googlecode.com/svn/trunk@1011 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- core/test/src/com/google/zxing/AllPositiveBlackBoxTester.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/test/src/com/google/zxing/AllPositiveBlackBoxTester.java b/core/test/src/com/google/zxing/AllPositiveBlackBoxTester.java index e72a370b3..401a0fb86 100644 --- a/core/test/src/com/google/zxing/AllPositiveBlackBoxTester.java +++ b/core/test/src/com/google/zxing/AllPositiveBlackBoxTester.java @@ -40,6 +40,7 @@ import com.google.zxing.oned.UPCEBlackBox1TestCase; import com.google.zxing.oned.UPCEBlackBox2TestCase; import com.google.zxing.oned.UPCEBlackBox3ReflectiveTestCase; import com.google.zxing.pdf417.PDF417BlackBox1TestCase; +import com.google.zxing.pdf417.PDF417BlackBox2TestCase; import com.google.zxing.qrcode.QRCodeBlackBox1TestCase; import com.google.zxing.qrcode.QRCodeBlackBox2TestCase; import com.google.zxing.qrcode.QRCodeBlackBox3TestCase; @@ -83,6 +84,7 @@ public final class AllPositiveBlackBoxTester { new UPCEBlackBox2TestCase(), new UPCEBlackBox3ReflectiveTestCase(), new PDF417BlackBox1TestCase(), + new PDF417BlackBox2TestCase(), new QRCodeBlackBox1TestCase(), new QRCodeBlackBox2TestCase(), new QRCodeBlackBox3TestCase(),