Added overdue EAN-8 tests

git-svn-id: https://zxing.googlecode.com/svn/trunk@268 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2008-03-11 15:28:23 +00:00
parent df4e3ac853
commit 0be4184870
17 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1 @@
48512343

View file

@ -0,0 +1 @@
http://www.gs1am.org/EAN8.gif

View file

@ -0,0 +1 @@
12345670

View file

@ -0,0 +1 @@
http://www.activebarcode.com/images/codes/200x125/ean8.gif

View file

@ -0,0 +1 @@
12345670

View file

@ -0,0 +1 @@
http://www.scanlink.co.za/images_faq/ean8.gif

View file

@ -0,0 +1 @@
67678983

View file

@ -0,0 +1 @@
http://www.nextoffice.net/linux/barcode2.jpg

View file

@ -0,0 +1 @@
80674313

View file

@ -0,0 +1 @@
http://www.indicod-ecr.it/prodottiservizi/images/ceu02b.gif

View file

@ -0,0 +1 @@
59001270

View file

@ -0,0 +1 @@
http://www.selmar.pl/images_menus_big/431/453607ba29d0a/kody_kreskowe_ean8.jpg

View file

@ -0,0 +1 @@
50487066

View file

@ -0,0 +1 @@
http://www.softeksoftware.co.uk/images/barcode_ean8.jpg

View file

@ -0,0 +1 @@
55123457

View file

@ -0,0 +1 @@
http://www.barcodeisland.com/ean8-1.gif

View file

@ -0,0 +1,34 @@
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.zxing.oned;
import com.google.zxing.MultiFormatReader;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.common.AbstractBlackBoxTestCase;
import java.io.File;
/**
* @author srowen@google.com (Sean Owen)
*/
public final class EAN8BlackBox1TestCase extends AbstractBlackBoxTestCase {
public EAN8BlackBox1TestCase() {
super(new File("test/data/blackbox/ean8-1"), new MultiFormatReader(), 0.66, BarcodeFormat.EAN_8);
}
}