0cdba3f688f40efbc5dceba6475990d4fe207304
[zxing.git] / core / test / src / com / google / zxing / common / reedsolomon / ReedSolomonEncoderQRCodeTestCase.java
1 /*
2  * Copyright 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.common.reedsolomon;
18
19 /**
20  * @author srowen@google.com (Sean Owen)
21  */
22 public final class ReedSolomonEncoderQRCodeTestCase extends AbstractReedSolomonTestCase {
23
24   /**
25    * Tests example given in ISO 18004, Annex I
26    */
27   public void testISO18004Example() {
28     int[] dataBytes = new int[] {
29       0x10, 0x20, 0x0C, 0x56, 0x61, 0x80, 0xEC, 0x11,
30       0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11, 0xEC, 0x11 };
31     int[] expectedECBytes = new int[] {
32       0xA5, 0x24, 0xD4, 0xC1, 0xED, 0x36, 0xC7, 0x87,
33       0x2C, 0x55 };
34     doTestQRCodeEncoding(dataBytes, expectedECBytes);
35   }
36
37   // Need more tests I am sure
38
39 }