diff --git a/xml/src/test/java/org/springframework/xml/validation/XmlValidatorFactoryTest.java b/xml/src/test/java/org/springframework/xml/validation/XmlValidatorFactoryTest.java index 4f347266..45403bfd 100644 --- a/xml/src/test/java/org/springframework/xml/validation/XmlValidatorFactoryTest.java +++ b/xml/src/test/java/org/springframework/xml/validation/XmlValidatorFactoryTest.java @@ -23,6 +23,7 @@ import java.net.URI; import java.net.URL; import junit.framework.TestCase; + import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; @@ -93,5 +94,9 @@ public class XmlValidatorFactoryTest extends TestCase { public InputStream getInputStream() throws IOException { throw new IOException(); } + + public boolean isReadable() { + return false; + } } } \ No newline at end of file