All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cucumber.core.runtime.TestCaseFailed Maven / Gradle / Ivy

There is a newer version: 7.20.1
Show newest version
package io.cucumber.core.runtime;

import java.util.function.Function;
import java.util.function.Supplier;

/**
 * Failures as asserted by
 * {@link TestCaseResultObserver#assertTestCasePassed(Supplier, Function, Function, Function)}
 * should not be collected by the rethrowing
 * {@link RethrowingThrowableCollector}.
 * 

* This wrapper facilitates cooperation between the two. Any exceptions caught * this way should be unpacked and rethrown. */ class TestCaseFailed extends RuntimeException { public TestCaseFailed(Throwable throwable) { super(throwable); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy