test method

void test({
  1. IntegrationMocks? mocks,
})

Runs all IntegrationTest._features test methods.

Implementation

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