Browse Source

removed last ignore

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1525 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Keith Donald 17 years ago
parent
commit
0d31e72c73
  1. 19
      org.springframework.core/src/test/java/org/springframework/core/convert/support/GenericTypeConverterTests.java

19
org.springframework.core/src/test/java/org/springframework/core/convert/support/GenericTypeConverterTests.java

@ -26,11 +26,10 @@ import java.util.LinkedList; @@ -26,11 +26,10 @@ import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.core.convert.ConversionFailedException;
import org.springframework.core.convert.TypeDescriptor;
import org.springframework.core.convert.ConverterNotFoundException;
import org.springframework.core.convert.TypeDescriptor;
import org.springframework.core.convert.converter.Converter;
public class GenericTypeConverterTests {
@ -114,22 +113,6 @@ public class GenericTypeConverterTests { @@ -114,22 +113,6 @@ public class GenericTypeConverterTests {
assertEquals(new Integer(3), result);
}
@Test
@Ignore
public void convertNoSuperTargetType() {
converter.add(new Converter<CharSequence, Number>() {
public Integer convert(CharSequence source) throws Exception {
return Integer.valueOf(source.toString());
}
});
try {
converter.convert("3", Integer.class);
fail("Should have failed");
} catch (ConverterNotFoundException e) {
}
}
@Test
public void convertObjectToPrimitive() {
converter.add(new StringToInteger());

Loading…
Cancel
Save