public interface FunctionTesterDefineDSL<T,R>
| Modifier and Type | Method and Description |
|---|---|
FunctionTesterNextDSL<T,R> |
thenExpectingResult(R result)
Specify the expected result.
|
FunctionTesterNextDSL<T,R> |
thenExpectingResult(Supplier<R> result)
Specify the expected result.
|
FunctionTesterNextDSL<T,R> |
thenExpectingResultThat(Matcher<? super R> matching)
Specify the expected result.
|
FunctionTesterNextDSL<T,R> |
thenExpectingResultThat(Supplier<Matcher<? super R>> matching)
Specify the expected result.
|
FunctionTesterNextDSL<T,R> thenExpectingResult(R result)
result - the expected value.next step of the DSLFunctionTesterNextDSL<T,R> thenExpectingResult(Supplier<R> result)
result - a supplier for the expected valuenext step of the DSLFunctionTesterNextDSL<T,R> thenExpectingResultThat(Matcher<? super R> matching)
matching - a matcher on the expected value.next step of the DSLFunctionTesterNextDSL<T,R> thenExpectingResultThat(Supplier<Matcher<? super R>> matching)
matching - a supplier for the matcher on the expected valuenext step of the DSLCopyright © 2015. All rights reserved.