m3_lightmeter/integration_test/run_all_tests.dart
2025-09-09 08:50:41 +02:00

28 lines
804 B
Dart

import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
import 'e2e_test.dart';
import 'guard_pro_tap_test.dart';
import 'logbook_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 test');
testGuardProTap('Guard Pro tap test');
testToggleLayoutFeatures('Toggle metering screen layout features test');
testLogbook('Logbook test');
testLogbookEquipmentProfileChanges('Logbook equipment profile changes test');
testE2E('e2e test');
}