test method

void test()

Runs all IntegrationTest._features test methods.

Implementation

void test() {
  flutter_test.group(
    _description,
    () {
      final _mocks = IntegrationMocks();
      _setUpMocks?.call(_mocks);
      _setUpAndTeardown(mocks: _mocks);
      for (int nrFeature = 0; nrFeature < _features.length; nrFeature++) {
        _features[nrFeature].test(
          binding: _binding,
          testDescription: _description,
          nrFeature: nrFeature,
        );
      }
    },
  );
}