Standardize and update all copyright statements to name "ZXing authors" as suggested...
[zxing.git] / core / test / src / com / google / zxing / qrcode / decoder / ModeTestCase.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.qrcode.decoder;
18
19 import com.google.zxing.ReaderException;
20 import junit.framework.TestCase;
21
22 /**
23  * @author srowen@google.com (Sean Owen)
24  */
25 public final class ModeTestCase extends TestCase {
26
27   public void testForBits() throws ReaderException {
28     assertEquals(Mode.TERMINATOR, Mode.forBits(0x00));
29     assertEquals(Mode.NUMERIC, Mode.forBits(0x01));
30     assertEquals(Mode.ALPHANUMERIC, Mode.forBits(0x02));
31     assertEquals(Mode.BYTE, Mode.forBits(0x04));
32     assertEquals(Mode.KANJI, Mode.forBits(0x08));
33     try {
34       Mode.forBits(0x10);
35       fail("Should have thrown an exception");
36     } catch (ReaderException re) {
37       // good
38     }
39   }
40
41   public void testCharacterCount() throws ReaderException {
42     // Spot check a few values
43     assertEquals(10, Mode.NUMERIC.getCharacterCountBits(Version.getVersionForNumber(5)));
44     assertEquals(12, Mode.NUMERIC.getCharacterCountBits(Version.getVersionForNumber(26)));
45     assertEquals(14, Mode.NUMERIC.getCharacterCountBits(Version.getVersionForNumber(40)));
46     assertEquals(9, Mode.ALPHANUMERIC.getCharacterCountBits(Version.getVersionForNumber(6)));
47     assertEquals(8, Mode.BYTE.getCharacterCountBits(Version.getVersionForNumber(7)));
48     assertEquals(8, Mode.KANJI.getCharacterCountBits(Version.getVersionForNumber(8)));
49   }
50
51 }