mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-05-14 20:20:40 +00:00

* extract focal length from exif * added focal length section * wip * [android] calculate EFL * split other platform handlers to separate files * [ios] calculate EFL * updated translations * deleted `focalLengthFromTags` * fixed unit tests * [ios] link missing files * updated Pro features screen * [ios] fixed signing * fixed screenshot generator * updated goldens * [android] updated store screenshots * wip * [ios] updated store screenshots * enable focal length feature by default * mock camera focal length for integration tests * cleanup * added logging to `CameraInfoService`
23 lines
575 B
Dart
23 lines
575 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'e2e_test.dart';
|
|
import 'metering_screen_layout_test.dart';
|
|
import 'purchases_test.dart';
|
|
import 'utils/platform_channel_mock.dart';
|
|
|
|
void main() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
setUpAll(() {
|
|
mockCameraFocalLength();
|
|
});
|
|
|
|
tearDownAll(() {
|
|
mockCameraFocalLength();
|
|
});
|
|
|
|
testPurchases('Purchase & refund premium features');
|
|
testToggleLayoutFeatures('Toggle metering screen layout features');
|
|
testE2E('e2e');
|
|
}
|