Created
August 10, 2019 14:36
-
-
Save alissonfpmorais/a86fef28cf9167c8768c665e10464d81 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fuzz4 : | |
Fuzzer a | |
-> Fuzzer b | |
-> Fuzzer c | |
-> Fuzzer d | |
-> String | |
-> (a -> b -> c -> d -> Expectation) | |
-> Test | |
fuzz4 fuzzerA fuzzerB fuzzerC fuzzerD description fn = | |
fuzz2 | |
(Fuzz.tuple ( fuzzerA, fuzzerB )) | |
(Fuzz.tuple ( fuzzerC, fuzzerD )) | |
description | |
(\( a, b ) ( c, d ) -> | |
fn a b c d | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment