/protocols/smpp/src/test/java/org/mobicents/protocols/smpp/encoding/UCS2EncodingTest.java
http://mobicents.googlecode.com/ · Java · 63 lines · 33 code · 9 blank · 21 comment · 0 complexity · 3d06f1ff631661f09c4be039393b5d1f MD5 · raw file
- /*
- * JBoss, Home of Professional Open Source
- * Copyright 2011, Red Hat, Inc. and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
- package org.mobicents.protocols.smpp.encoding;
- import java.io.UnsupportedEncodingException;
- import org.mobicents.protocols.smpp.encoding.UCS2Encoding;
- import org.testng.annotations.Test;
- @Test
- public class UCS2EncodingTest extends BaseAlphabetEncodingTest<UCS2Encoding> {
- private static final String STRING =
- "abcdefJKLMN1234567890\u00c0\u00c3\u20ac";
- private static final int[] BYTES = {
- 0x00, 0x61, 0x00, 0x62, 0x00, 0x63, 0x00, 0x64,
- 0x00, 0x65, 0x00, 0x66, 0x00, 0x4a, 0x00, 0x4b,
- 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x31,
- 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35,
- 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39,
- 0x00, 0x30, 0x00, 0xc0, 0x00, 0xc3, 0x20, 0xac,
- };
- @Override
- protected TestData getArrayToDecode() {
- return new TestData(STRING, BYTES);
- }
- @Override
- protected UCS2Encoding getEncodingToTest() throws UnsupportedEncodingException {
- return new UCS2Encoding();
- }
- @Override
- protected TestData getFullySupportedStringToEncode() {
- return new TestData(BYTES, STRING);
- }
- @Override
- protected TestData getPartiallySupportedStringToEncode() {
- return new TestData(BYTES, STRING);
- }
- }