blob: d1ee3a5793db9b6f7cf202e819cddd9ff7ba5663 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.apache.commons.beanutils2.converters;
import org.apache.commons.beanutils2.ConversionException;
import junit.framework.TestCase;
/**
* Test case for {@code StringConverter}.
*
*/
public class StringConverterTestCase extends TestCase {
/** The converter to be tested. */
private StringConverter converter;
@Override
protected void setUp() throws Exception {
super.setUp();
converter = new StringConverter();
}
/**
* Tests whether the correct default type is returned.
*/
public void testDefaultType() {
assertEquals("Wrong default type", String.class, converter.getDefaultType());
}
/**
* Tests a conversion to a string type.
*/
public void testConvertToTypeString() {
final Object value = new Object();
final String strVal = converter.convert(String.class, value);
assertEquals("Wrong conversion result", value.toString(), strVal);
}
/**
* Tries to convert an object to an unsupported type.
*/
public void testConvertToUnsupportedType() {
try {
converter.convert(Integer.class, new Object());
fail("No conversion exception thrown!");
} catch(final ConversionException cex) {
// expected result
}
}
}