I'm trying to test a load method, which throws a StreamCorruptedException. But when i'm testing it with junit 4, the test fails.
My load method:
public BookDataProvider(String filename) throws StreamCorruptedException { ... }
My test class:
public class TestClass {
@Test (expected=StreamCorruptedException.class)
public void wrongFileTest() throws StreamCorruptedException {
BookDataProvider bdp = new BookDataProvider("wrong filename");
}
}
The method throws the exception, but the test fails. What did i do wrong?