X-Git-Url: http://git.rot13.org/?p=zxing.git;a=blobdiff_plain;f=core%2Ftest%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Foned%2Frss%2Fexpanded%2Fdecoders%2FAnyAIDecoderTest.java;h=88f07058baa963166969f6dad8b5906c146143b7;hp=1afaab30015eb9404b41549653f0ada76f3db6f8;hb=e5d03a79a458340b69a57914a352f0a8841cdf69;hpb=a932cce57fabafd18a5db770f2c87afbd72e31b9;ds=sidebyside diff --git a/core/test/src/com/google/zxing/oned/rss/expanded/decoders/AnyAIDecoderTest.java b/core/test/src/com/google/zxing/oned/rss/expanded/decoders/AnyAIDecoderTest.java index 1afaab30..88f07058 100644 --- a/core/test/src/com/google/zxing/oned/rss/expanded/decoders/AnyAIDecoderTest.java +++ b/core/test/src/com/google/zxing/oned/rss/expanded/decoders/AnyAIDecoderTest.java @@ -26,48 +26,56 @@ package com.google.zxing.oned.rss.expanded.decoders; +import org.junit.Test; + /** * @author Pablo Orduña, University of Deusto (pablo.orduna@deusto.es) */ public class AnyAIDecoderTest extends AbstractDecoderTest { private static final String header = "....."; - + + @Test public void testAnyAIDecoder_1() throws Exception { String data = header + numeric_10 + numeric_12 + numeric2alpha + alpha_A + alpha2numeric + numeric_12; String expected = "(10)12A12"; assertCorrectBinaryString(data, expected); } - + + @Test public void testAnyAIDecoder_2() throws Exception { String data = header + numeric_10 + numeric_12 + numeric2alpha + alpha_A + alpha2isoiec646 + i646_B; String expected = "(10)12AB"; assertCorrectBinaryString(data, expected); } - + + @Test public void testAnyAIDecoder_3() throws Exception { String data = header + numeric_10 + numeric2alpha + alpha2isoiec646 + i646_B + i646_C + isoiec646_2alpha + alpha_A + alpha2numeric + numeric_10; String expected = "(10)BCA10"; assertCorrectBinaryString(data, expected); } - + + @Test public void testAnyAIDecoder_numericFNC1_secondDigit() throws Exception { String data = header + numeric_10 + numeric_1FNC1; String expected = "(10)1"; assertCorrectBinaryString(data, expected); } - + + @Test public void testAnyAIDecoder_alphaFNC1() throws Exception { String data = header + numeric_10 + numeric2alpha + alpha_A + alpha_FNC1; String expected = "(10)A"; assertCorrectBinaryString(data, expected); } - + + @Test public void testAnyAIDecoder_646FNC1() throws Exception { String data = header + numeric_10 + numeric2alpha + alpha_A + isoiec646_2alpha + i646_B + i646_FNC1; String expected = "(10)AB";