- Added support for rotation in our blackbox test framework, and refactored the ways...
[zxing.git] / core / test / src / com / google / zxing / qrcode / QRCodeBlackBox2TestCase.java
index 4c2f0dc..a7a5988 100644 (file)
@@ -28,7 +28,11 @@ import java.io.File;
 public final class QRCodeBlackBox2TestCase extends AbstractBlackBoxTestCase {
 
   public QRCodeBlackBox2TestCase() {
-    super(new File("test/data/blackbox/qrcode-2"), new MultiFormatReader(), 10, BarcodeFormat.QR_CODE);
+    super(new File("test/data/blackbox/qrcode-2"), new MultiFormatReader(), BarcodeFormat.QR_CODE);
+    addTest(10, 0.0f);
+    addTest(5, 90.0f);
+    addTest(8, 180.0f);
+    addTest(2, 270.0f);
   }
 
 }
\ No newline at end of file