Small detector simplification that addresses issue 215 and picks up a net +4 more...
[zxing.git] / core / test / src / com / google / zxing / qrcode / QRCodeBlackBox3TestCase.java
index 2b8a5bc..6888c94 100644 (file)
@@ -20,19 +20,17 @@ import com.google.zxing.MultiFormatReader;
 import com.google.zxing.BarcodeFormat;
 import com.google.zxing.common.AbstractBlackBoxTestCase;
 
-import java.io.File;
-
 /**
  * @author dswitkin@google.com (Daniel Switkin)
  */
 public final class QRCodeBlackBox3TestCase extends AbstractBlackBoxTestCase {
 
   public QRCodeBlackBox3TestCase() {
-    super(new File("test/data/blackbox/qrcode-3"), new MultiFormatReader(), BarcodeFormat.QR_CODE);
-    addTest(29, 29, 0.0f);
-    addTest(26, 26, 90.0f);
-    addTest(29, 29, 180.0f);
-    addTest(26, 26, 270.0f);
+    super("test/data/blackbox/qrcode-3", new MultiFormatReader(), BarcodeFormat.QR_CODE);
+    addTest(33, 33, 0.0f);
+    addTest(33, 33, 90.0f);
+    addTest(33, 33, 180.0f);
+    addTest(35, 35, 270.0f);
   }
 
 }
\ No newline at end of file