test method

  1. @isTest
void test(
  1. String description,
  2. Tester3<First, Second, Third> 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,
  Tester3<First, Second, Third> body, {
  String? testOn,
  test_package.Timeout? timeout,
  dynamic skip,
  dynamic tags,
  Map<String, dynamic>? onPlatform,
  int? retry,
}) {
  Glados(any.combine3(
    firstGenerator,
    secondGenerator,
    thirdGenerator,
    (First a, Second b, Third c) => [a, b, c],
  )).test(
    description,
    (input) => body(input[0] as First, input[1] as Second, input[2] as Third),
    testOn: testOn,
    timeout: timeout,
    skip: skip,
    tags: tags,
    onPlatform: onPlatform,
    retry: retry,
  );
}