parametized library

Functions to aid in writing tests scenarios with multiple input values and expectations run against the same test function.

Functions

parametizedGroup<T>(String description, List<T> args, Function testFn) → void
Creates a parametized test group, where each element in args will be passed to the test function as a separate test run.
parametizedTest<T>(List<T> args, Function testFn) → void
Creates a collection of test calls based on the given test parameters, where each element in the args list will be passed to a test function as a separate test run.