Test<TestContext extends Context>.stub constructor

Test<TestContext extends Context>.stub(
  1. String _title, {
  2. FutureOr<TestContext> contextBuilder()?,
})

Stubbed. This will be skipped and is meant to be used as a placeholder.

Implementation

Test.stub(
  super._title, {
  super.contextBuilder,
}) : super(
        assertions: (test) => [],
        skip: true,
      );