Package | Description |
---|---|
org.junit.rules |
Modifier and Type | Class and Description |
---|---|
class |
ErrorCollector
The ErrorCollector rule allows execution of a test to continue after the
first problem is found (for example, to collect _all_ the incorrect rows in a
table, and report them all at once):
public static class UsesErrorCollectorTwice {
@Rule
public ErrorCollector collector= new ErrorCollector();
@Test
public void example() {
collector.addError(new Throwable("first thing went wrong"));
collector.addError(new Throwable("second thing went wrong"));
collector.checkThat(getResult(), not(containsString("ERROR!
|
Copyright © 2002–2018 JUnit. All rights reserved.