在JUnit中,使用TestWatcher并覆盖 failed()函数,是否可以删除抛出的异常,而是自己进行断言?
用例是:在Android上进行功能测试,当测试使应用程序崩溃时,我想将 NoSuchElementException 替换为 AssertionError (“app崩溃“)。
我做自定义断言没有问题(当我在 finished()方法中检测到崩溃时),但是如何删除抛出的异常?
因为在我的报告中它为一个测试创建了异常和断言,所以失败的次数多于失败时的测试,这是逻辑但很烦人。
我想知道是否有办法自定义Throwable对象以删除特定的NoSuchElementException,从而操纵堆栈跟踪。
我没有成功。 (并且我不想在每次测试中使用try / catch执行它...)。
答案 0 :(得分:3)
您可以覆盖TestWatcher.apply
并为catch
添加特殊NoSuchElementException
:
public class MyTestWatcher extends TestWatcher {
public Statement apply(final Statement base, final Description description) {
return new Statement() {
@Override
public void evaluate() throws Throwable {
List<Throwable> errors = new ArrayList<Throwable>();
startingQuietly(description, errors);
try {
base.evaluate();
succeededQuietly(description, errors);
}
catch (NoSuchElementException e) {
// ignore this
}
catch (AssumptionViolatedException e) {
errors.add(e);
skippedQuietly(e, description, errors);
}
catch (Throwable e) {
errors.add(e);
failedQuietly(e, description, errors);
}
finally {
finishedQuietly(description, errors);
}
MultipleFailureException.assertEmpty(errors);
}
};
}
答案 1 :(得分:1)
你可以通过绕过来做到这一点。下面给出一个示例代码。希望它会对你有所帮助。
try {
// Write your code which throws exception
----
----
----
} catch (NoSuchElementException ex) {
ex.printStackTrace();
if (ex instanceof NoSuchElementException) { // bypass
// NoSuchElementException
// You can again call the method and make a counter for deadlock
// situation or implement your own code according to your
// situation
AssertionError ("app crashed");
if (retry) {
---
---
return previousMethod(arg1, arg2,...);
} else {
throw ex;
}
}
} catch (final Exception e) {
e.printStackTrace();
throw e;
}
我之前已经解决了这类问题。我的另一个答案有细节。您可以通过我的另一个答案:android.security.KeyStoreException: Invalid key blob