execute method

void execute()

Wrapper to the test function.

Implementation

void execute() {
  test(
    description,
    () => expect(
      action?.call(input),
      matcher,
    ),
    testOn: this.testOn,
    timeout: this.timeout,
    skip: this.skip,
    tags: this.tags,
    onPlatform: this.onPlatform,
    retry: this.retry,
  );
}