@Test
public void assertionError_should_be_wrapped_in_context_exception() {
try {
Context dummy_context = Context.singular(null, "dummy");
fc.executeAndWrapReThrowIfNeeded(new Execution() {
public Void execute() {
throw new AssertionError("Oops");
}
}, null, dummy_context, true);
fail("should have barfed");