describeValue method

  1. @override
String describeValue(
  1. TargetPlatform value
)
override

Formats the console log output for the active test permutation block.

Returns a structured string pattern: [PLATFORM] : Suite Description

Implementation

@override
String describeValue(TargetPlatform value) {
  final platformName = value.name.toUpperCase();
  return '[$platformName] : $_description';
}