Provide exception info for failures

git-svn-id: http://google-refine.googlecode.com/svn/trunk@2286 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Tom Morris 2011-10-07 16:51:06 +00:00
parent 4a4daf7112
commit 79c795138c

View File

@ -130,8 +130,7 @@ public class RefineTest {
try {
verify(options, times(1)).get(name);
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Assert.fail("JSONException",e);
}
}
@ -141,8 +140,7 @@ public class RefineTest {
try {
verify(options, times(1)).getJSONArray(name);
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Assert.fail("JSONException",e);
}
}
}