forAll<T> function
void
forAll<
T>( - String description,
- Gen<T> gen,
- TestBody<T> testBody, {
- int? numTests,
- int? seed,
- String? testOn,
- Timeout? timeout,
- dynamic skip,
- dynamic tags,
- Map<String, dynamic>? onPlatform,
- int? retry,
})
Implementation
@isTest
void forAll<T>(
String description,
Gen<T> gen,
TestBody<T> testBody, {
int? numTests,
int? seed,
String? testOn,
Timeout? timeout,
dynamic skip,
dynamic tags,
Map<String, dynamic>? onPlatform,
int? retry,
}) =>
Prop(description, gen, testBody).run(
numTests: numTests,
seed: seed,
testOn: testOn,
timeout: timeout,
skip: skip,
tags: tags,
onPlatform: onPlatform,
retry: retry,
);