| /* |
| * Copyright 2012 ZXing authors |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #import "ZXUPCAWriterTestCase.h" |
| |
| @implementation ZXUPCAWriterTestCase |
| |
| - (void)testEncode { |
| NSString *testStr = @"00010101000110110111011000100010110101111011110101010111001011101001001110110011011011001011100101000"; |
| ZXBitMatrix *result = [[[ZXUPCAWriter alloc] init] encode:@"485963095124" |
| format:kBarcodeFormatUPCA |
| width:(int)testStr.length |
| height:0 |
| error:nil]; |
| for (int i = 0; i < testStr.length; i++) { |
| BOOL expected = [testStr characterAtIndex:i] == '1'; |
| STAssertEquals([result getX:i y:0], expected, @"Expected (%d, 0) to be %d", i, expected); |
| } |
| } |
| |
| - (void)testAddChecksumAndEncode { |
| NSString *testStr = @"00010100110010010011011110101000110110001010111101010100010010010001110100111001011001101101100101000"; |
| ZXBitMatrix *result = [[[ZXUPCAWriter alloc] init] encode:@"12345678901" |
| format:kBarcodeFormatUPCA |
| width:(int)testStr.length |
| height:0 |
| error:nil]; |
| for (int i = 0; i < testStr.length; i++) { |
| BOOL expected = [testStr characterAtIndex:i] == '1'; |
| STAssertEquals([result getX:i y:0], expected, @"Expected (%d, 0) to be %d", i, expected); |
| } |
| } |
| |
| @end |