execute method

void execute()

Implementation

void execute() {
  group(description, () {
    setUpAll(initialize);

    tests
        .map((test) => test.copyWith(
              initialize: () {
                initializeForEveryTest();
                return test.initialize();
              },
              dispose: () {
                disposeForEveryTest();
                return test.dispose();
              },
            ))
        .forEach((test) => test.execute());

    tearDownAll(dispose);
  });
}