github felangel/bloc bloc_test-v8.1.0

latest releases: flutter_bloc_feature_brick-v0.3.2, flutter_bloc-v8.1.6, intellij_bloc-v4.0.1...
3 years ago
  • feat: add setUp and tearDown to blocTest
blocTest(
  setUp: () {
    // Execute any code prior to building the bloc.
    when(() => repository.someMethod()).thenReturn(...);
  },
  build: () => MyBloc(repository),
  act: (bloc) => bloc.add(...),
  expect: () => [...],
  tearDown: () {
    // Execute any code before the test ends.
  },
);

Don't miss a new bloc release

NewReleases is sending notifications on new releases.