GroupOf<ExpectedType> constructor

GroupOf<ExpectedType>(
  1. String _title,
  2. List<Contextual<Context<ExpectedType>>> children, {
  3. FutureOr<void> setup(
    1. Context<ExpectedType> test
    )?,
  4. FutureOr<void> teardown(
    1. Context<ExpectedType> test
    )?,
  5. TestOptions? options,
})

Implementation

GroupOf(
  super._title,
  super.children, {
  super.setup,
  super.teardown,
  super.options,
}) : super(
        contextBuilder: Context<ExpectedType>.new,
      );