test function
void
test(})
Drop-in replacement for flutter_test's test with Allure reporting.
Implementation
void test(
Object? description,
dynamic Function() body, {
String? testOn,
ft.Timeout? timeout,
Object? skip,
Object? tags,
Map<String, dynamic>? onPlatform,
int? retry,
}) {
drop_in.test(
description,
body,
testOn: testOn,
timeout: timeout,
skip: skip,
tags: tags,
onPlatform: onPlatform,
retry: retry,
);
}