| Package | Description |
|---|---|
| com.github.writethemfirst.approvals |
Approvals Package
|
| com.github.writethemfirst.approvals.utils |
Utils Package
|
| Modifier and Type | Method and Description |
|---|---|
static <I1,I2,I3,I4> |
Approvals.verifyAllCombinations(I1[] args1,
I2[] args2,
I3[] args3,
I4[] args4,
Function4<I1,I2,I3,I4,?> f)
Compares the actual output of your program and the content of the approved file matching with the test method (see
Approvals.verify(Object) for details). |
static <I1,I2,I3,I4> |
Approvals.verifyAllCombinations(Iterable<I1> args1,
Iterable<I2> args2,
Iterable<I3> args3,
Iterable<I4> args4,
Function4<I1,I2,I3,I4,?> f)
Compares the actual output of your program and the content of the approved file matching with the test method (see
Approvals.verify(Object) for details). |
| Modifier and Type | Method and Description |
|---|---|
static <IN1,IN2,IN3,IN4> |
FunctionUtils.applyCombinations(Iterable<IN1> args1,
Iterable<IN2> args2,
Iterable<IN3> args3,
Iterable<IN4> args4,
Function4<IN1,IN2,IN3,IN4,?> function)
Applies the provided function to all combinations of all the provided arguments for the function, and returns the produced results as a String.
|
Copyright © 2018–2019 Write Them First!. All rights reserved.