context function

  1. @isTestGroup
void context(
  1. Object description,
  2. void body()
)

Creates a group of tests. Equivalent to describe.

Implementation

@isTestGroup
void context(Object description, void Function() body) {
  group(description, body);
}