runFeature method

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

Implementation

@protected
void runFeature(
  String name,
  Iterable<String>? tags,
  void Function() runFeature,
) {
  group(
    name,
    () {
      runFeature();
    },
  );
}