Inclusion of try/finally suggested by Stian
This commit is contained in:
parent
30f34173c5
commit
ec77970021
1 changed files with 6 additions and 3 deletions
|
@ -63,9 +63,12 @@ public class AssertEvents implements TestRule {
|
|||
return new Statement() {
|
||||
@Override
|
||||
public void evaluate() throws Throwable {
|
||||
base.evaluate();
|
||||
// TODO Test should fail if there are leftover events
|
||||
context.testingClient.testing().clearQueue();
|
||||
try {
|
||||
base.evaluate();
|
||||
} finally {
|
||||
// TODO Test should fail if there are leftover events
|
||||
context.testingClient.testing().clearQueue();
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue