listener.gotResult(new Result("shouldFail", "Container", Result.FAILED));
ensureThat(writer, contains(Result.FAILED));
}
public void shouldRenderPendingSymbolForPending() throws Exception {
listener.gotResult(new Result("shouldBePending", "Container", new PendingException()));
ensureThat(writer, contains(Result.PENDING));
}