ResultUnaryAsyncTest<T, S> typedef

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

a typedef for a ResultUnaryAsync test function

Implementation

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