blob: 1c614680e481847bf47e25cdc00b03257f1b3f00 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.core.tests.internal.databinding.conversion;
import junit.framework.TestCase;
import org.eclipse.core.internal.databinding.conversion.StringToByteConverter;
import com.ibm.icu.text.NumberFormat;
/**
* @since 1.1
*/
public class StringToByteConverterTest extends TestCase {
private NumberFormat numberFormat;
private StringToByteConverter converter;
/*
* (non-Javadoc)
*
* @see junit.framework.TestCase#setUp()
*/
protected void setUp() throws Exception {
super.setUp();
numberFormat = NumberFormat.getIntegerInstance();
converter = StringToByteConverter.toByte(numberFormat, false);
}
public void testConvertsToByte() throws Exception {
Byte value = new Byte((byte) 1);
Byte result = (Byte) converter.convert(numberFormat.format(value));
assertEquals(value, result);
}
public void testConvertsToBytePrimitive() throws Exception {
converter = StringToByteConverter.toByte(numberFormat, true);
Byte value = new Byte((byte) 1);
Byte result = (Byte) converter.convert(numberFormat.format(value));
assertEquals(value, result);
}
public void testFromTypeIsString() throws Exception {
assertEquals(String.class, converter.getFromType());
}
public void testToTypeIsShort() throws Exception {
assertEquals(Byte.class, converter.getToType());
}
public void testToTypeIsBytePrimitive() throws Exception {
converter = StringToByteConverter.toByte(true);
assertEquals(Byte.TYPE, converter.getToType());
}
public void testReturnsNullBoxedTypeForEmptyString() throws Exception {
assertNull(converter.convert(""));
}
public void testThrowsIllegalArgumentExceptionIfAskedToConvertNonString()
throws Exception {
try {
converter.convert(new Integer(1));
fail("exception should have been thrown");
} catch (IllegalArgumentException e) {
}
}
}