The test is acutally wrong since it expects the FileNotFoundException :-)
You should also be using:
| catch (Throwable t)
| {
| checkDeepThrowable(FileNotFoundException.class, t);
| }
|
so you get a better error message if the throws the wrong exception.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4133292#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...