test function

void test(
  1. String description,
  2. dynamic body(), {
  3. String? testOn,
  4. Timeout? timeout,
  5. Object? skip,
  6. @Deprecated('Dev only') bool solo = false,
  7. Map<String, Object?>? onPlatform,
})

Implementation

void test(String description, dynamic Function() body,
    {String? testOn,
    Timeout? timeout,
    Object? skip,
    @Deprecated('Dev only') bool solo = false,
    Map<String, Object?>? onPlatform}) {
  testImplementation.test(description, body,
      testOn: testOn,
      timeout: timeout,
      skip: skip,
      onPlatform: onPlatform,
      // ignore: deprecated_member_use
      solo: solo);
}