RunUnarySyncTest<T, S> typedef

RunUnarySyncTest<T, S> = void Function({required Unary<T, S> example, required String name, required Nullary<S> seed})

a typedef for a RunUnarySync test function

Implementation

typedef RunUnarySyncTest<T, S> = void Function({
  required String name,
  required Unary<T, S> example,
  required Nullary<S> seed,
});