testCaseName function
Sets the test case name of the current test.
Implementation
Future<void> testCaseName(String value) {
return _globalTestRuntime.send(
RuntimeMessage(
type: 'metadata',
data: <String, Object?>{'testCaseName': value},
),
);
}