// add a non-failed outcome
table.addOutcome("a failure", two, is(false));
try {
table.verify();
} catch (UUIDExceptionWrapper ce) {
OutcomesFailed e = (OutcomesFailed) ce.getCause();
assertThat(e.outcomesTable().getOutcomes().size(), equalTo(2));
List<Outcome<?>> failedOutcomes = e.outcomesTable().getFailedOutcomes();
assertThat(failedOutcomes.size(), equalTo(1));
Outcome<?> outcome = failedOutcomes.get(0);
assertThat(outcome.getDescription(), equalTo("a failure"));
assertThat((Boolean) outcome.getValue(), is(true));
}