Updates from sanfordsquires to fix RS decoding for Datamatrix
[zxing.git] / core / test / src / com / google / zxing / common / reedsolomon / AbstractReedSolomonTestCase.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 import junit.framework.TestCase;
20
21 import java.util.BitSet;
22 import java.util.Random;
23
24 /**
25  * @author srowen@google.com (Sean Owen)
26  */
27 abstract class AbstractReedSolomonTestCase extends TestCase {
28
29   static void corrupt(int[] received, int howMany, Random random) {
30     BitSet corrupted = new BitSet(received.length);
31     for (int j = 0; j < howMany; j++) {
32       int location = random.nextInt(received.length);
33       if (corrupted.get(location)) {
34         j--;
35       } else {
36         corrupted.set(location);
37         received[location] = (received[location] + 1 + random.nextInt(255)) & 0xFF;
38       }
39     }
40   }
41
42 }