mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
fixed tests
This commit is contained in:
parent
c7d92cc105
commit
ee54aed1f3
1 changed files with 2 additions and 1 deletions
|
@ -117,6 +117,7 @@ void main() {
|
||||||
bloc.onCommunicationState(const communication_states.MeasureState());
|
bloc.onCommunicationState(const communication_states.MeasureState());
|
||||||
await Future.delayed(Duration.zero);
|
await Future.delayed(Duration.zero);
|
||||||
bloc.onCommunicationState(const communication_states.SettingsOpenedState());
|
bloc.onCommunicationState(const communication_states.SettingsOpenedState());
|
||||||
|
bloc.onCommunicationState(const communication_states.SettingsClosedState());
|
||||||
},
|
},
|
||||||
verify: (_) {
|
verify: (_) {
|
||||||
verify(() => meteringInteractor.luxStream().listen((_) {})).called(1);
|
verify(() => meteringInteractor.luxStream().listen((_) {})).called(1);
|
||||||
|
@ -132,7 +133,7 @@ void main() {
|
||||||
}).called(1);
|
}).called(1);
|
||||||
verify(() {
|
verify(() {
|
||||||
communicationBloc.add(communication_events.MeteringEndedEvent(resultList.last));
|
communicationBloc.add(communication_events.MeteringEndedEvent(resultList.last));
|
||||||
}).called(2); // +1 from dispose
|
}).called(3); // +1 from settings closed, +1 from dispose
|
||||||
},
|
},
|
||||||
expect: () => resultList.map(
|
expect: () => resultList.map(
|
||||||
(e) => isA<LightSensorContainerState>().having((state) => state.ev100, 'ev100', e),
|
(e) => isA<LightSensorContainerState>().having((state) => state.ev100, 'ev100', e),
|
||||||
|
|
Loading…
Reference in a new issue