group function
void
group(})
group (see test.dart)
Implementation
void group(String description, void Function() body,
{String? testOn,
Timeout? timeout,
Object? skip,
@Deprecated('Dev only') bool solo = false,
Map<String, Object?>? onPlatform}) {
testImplementation.group(description, body,
testOn: testOn,
timeout: timeout,
skip: skip,
onPlatform: onPlatform,
solo: solo);
}