mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +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
15 lines
430 B
Dart
15 lines
430 B
Dart
import 'dart:io';
|
|
import 'package:integration_test/integration_test_driver_extended.dart';
|
|
|
|
import 'utils/grant_camera_permission.dart';
|
|
|
|
Future<void> main() async {
|
|
await grantCameraPermission();
|
|
await integrationDriver(
|
|
onScreenshot: (name, bytes, [args]) async {
|
|
final File image = await File('screenshots/$name.png').create(recursive: true);
|
|
image.writeAsBytesSync(bytes);
|
|
return true;
|
|
},
|
|
);
|
|
}
|