onBeforeRunFeature method

  1. @protected
Future<void> onBeforeRunFeature(
  1. String name,
  2. Iterable<String>? tags
)

Implementation

@protected
Future<void> onBeforeRunFeature(
  String name,
  Iterable<String>? tags,
) async {
  final debugInformation = RunnableDebugInformation('', 0, name);
  final featureTags =
      (tags ?? Iterable<Tag>.empty()).map((t) => Tag(t.toString(), 0));
  await reporter.onFeatureStarted(
    StartedMessage(
      Target.feature,
      name,
      debugInformation,
      featureTags,
    ),
  );
}