testCaseName function

Future<void> testCaseName(
  1. String value
)

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},
    ),
  );
}