mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 15:00:40 +00:00
f3b08868be
- Fixed test coverage calculation - Removed `mockito` from the application mock - Implemented platform channel mocks to mimic incident light metering - Covered providers with unit tests - Covered metering screen pickers with widget tests - Laid foundation for integration tests
10 lines
375 B
Dart
10 lines
375 B
Dart
import 'package:flutter/services.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
Future<void> sendMockVolumeAction(String channelName, int keyCode) async {
|
|
await TestDefaultBinaryMessengerBinding.instance.defaultBinaryMessenger.handlePlatformMessage(
|
|
channelName,
|
|
const StandardMethodCodec().encodeSuccessEnvelope(keyCode),
|
|
(ByteData? data) {},
|
|
);
|
|
}
|