Issue 492
[zxing.git] / core / test / src / com / google / zxing / qrcode / QRCodeBlackBox2TestCase.java
index 89ba41b..0fc76eb 100644 (file)
 
 package com.google.zxing.qrcode;
 
-import com.google.zxing.MultiFormatReader;
 import com.google.zxing.BarcodeFormat;
+import com.google.zxing.MultiFormatReader;
 import com.google.zxing.common.AbstractBlackBoxTestCase;
 
-import java.io.File;
-
 /**
  * @author Sean Owen
  */
 public final class QRCodeBlackBox2TestCase extends AbstractBlackBoxTestCase {
 
   public QRCodeBlackBox2TestCase() {
-    super(new File("test/data/blackbox/qrcode-2"), new MultiFormatReader(), BarcodeFormat.QR_CODE);
-    addTest(22, 22, 0.0f);
-    addTest(18, 18, 90.0f);
-    addTest(22, 22, 180.0f);
-    addTest(17, 17, 270.0f);
+    super("test/data/blackbox/qrcode-2", new MultiFormatReader(), BarcodeFormat.QR_CODE);
+    addTest(26, 26, 0.0f);
+    addTest(25, 25, 90.0f);
+    addTest(24, 24, 180.0f);
+    addTest(25, 25, 270.0f);
   }
 
-}
\ No newline at end of file
+}