Fixed old unit test compile problem I probaby introduced
[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 junit.framework.TestCase;
20
21 /**
22  * @author Sean Owen
23  */
24 public final class ModeTestCase extends TestCase {
25
26   public void testForBits() {
27     assertEquals(Mode.TERMINATOR, Mode.forBits(0x00));
28     assertEquals(Mode.NUMERIC, Mode.forBits(0x01));
29     assertEquals(Mode.ALPHANUMERIC, Mode.forBits(0x02));
30     assertEquals(Mode.BYTE, Mode.forBits(0x04));
31     assertEquals(Mode.KANJI, Mode.forBits(0x08));
32     try {
33       Mode.forBits(0x10);
34       fail("Should have thrown an exception");
35     } catch (IllegalArgumentException iae) {
36       // good
37     }
38   }
39
40   public void testCharacterCount() {
41     // Spot check a few values
42     assertEquals(10, Mode.NUMERIC.getCharacterCountBits(Version.getVersionForNumber(5)));
43     assertEquals(12, Mode.NUMERIC.getCharacterCountBits(Version.getVersionForNumber(26)));
44     assertEquals(14, Mode.NUMERIC.getCharacterCountBits(Version.getVersionForNumber(40)));
45     assertEquals(9, Mode.ALPHANUMERIC.getCharacterCountBits(Version.getVersionForNumber(6)));
46     assertEquals(8, Mode.BYTE.getCharacterCountBits(Version.getVersionForNumber(7)));
47     assertEquals(8, Mode.KANJI.getCharacterCountBits(Version.getVersionForNumber(8)));
48   }
49
50 }