test method

  1. @isTest
void test(
  1. String description,
  2. Tester2<First, Second> body, {
  3. String? testOn,
  4. Timeout? timeout,
  5. dynamic skip,
  6. dynamic tags,
  7. Map<String, dynamic>? onPlatform,
  8. int? retry,
})

Implementation

@isTest
void test(
  String description,
  Tester2<First, Second> body, {
  String? testOn,
  test_package.Timeout? timeout,
  dynamic skip,
  dynamic tags,
  Map<String, dynamic>? onPlatform,
  int? retry,
}) {
  Glados(
    any.combine2(
      firstGenerator,
      secondGenerator,
      (First a, Second b) => [a, b],
    ),
  ).test(
    description,
    (input) => body(input[0] as First, input[1] as Second),
    testOn: testOn,
    timeout: timeout,
    skip: skip,
    tags: tags,
    onPlatform: onPlatform,
    retry: retry,
  );
}