Tagged Questions
3
votes
5answers
1k views
jUnit testing with exception expectations (multiple asserts)
I'm testing a WeekConverter for xalan use and wondering what is my test exactly doing. :D
Having the following test method:
@Test(expected = IllegalArgumentException.class)
public void ...
1
vote
2answers
1k views
How to catch a nested exception in java
I'm using Apache Xalan (v.2.7.1) to translate XML to XHTML in Apache Tomcat (v6.0.32). Sometimes the loading gets cancelled by the client and the following exception is thrown:
...