Add Code 93 support. Update tests to reflect new (better) number of successes.
[zxing.git] / core / test / src / com / google / zxing / oned / UPCEBlackBox3ReflectiveTestCase.java
index 011a506..766356c 100644 (file)
 
 package com.google.zxing.oned;
 
-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 dswitkin@google.com (Daniel Switkin)
  */
 public final class UPCEBlackBox3ReflectiveTestCase extends AbstractBlackBoxTestCase {
 
   public UPCEBlackBox3ReflectiveTestCase() {
-    super(new File("test/data/blackbox/upce-3"), new MultiFormatReader(), BarcodeFormat.UPC_E);
-    addTest(4, 8, 0.0f);
-    addTest(4, 8, 180.0f);
+    super("test/data/blackbox/upce-3", new MultiFormatReader(), BarcodeFormat.UPC_E);
+    addTest(6, 8, 0.0f);
+    addTest(6, 8, 180.0f);
   }
 
 }