You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can always use a custom generator to generate more inputs, like this:
Glados(
any.combine4(any.int, any.int, any.int, (a, b, c, d) => [a, b, c, d])
).test(description, (input) {
final a = input[0] asint;
final b = input[1] asint;
final c = input[2] asint;
final d = input[3] asint;
// stuff
});
But yes, in the long term, the cleaner approach would be to create a PR for a Glados 4 class.
Is there any workaround when you need 4 inputs, or should I create a
Glados4
class and submit a pull request?The text was updated successfully, but these errors were encountered: