2025-05-12 14:08:37 +00:00
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
2024-03-13 14:34:26 +00:00
|
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
|
|
|
|
import 'e2e_test.dart';
|
|
|
|
import 'metering_screen_layout_test.dart';
|
|
|
|
import 'purchases_test.dart';
|
2025-05-12 14:08:37 +00:00
|
|
|
import 'utils/platform_channel_mock.dart';
|
2024-03-13 14:34:26 +00:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
2025-05-12 14:08:37 +00:00
|
|
|
setUpAll(() {
|
|
|
|
mockCameraFocalLength();
|
|
|
|
});
|
|
|
|
|
|
|
|
tearDownAll(() {
|
|
|
|
mockCameraFocalLength();
|
|
|
|
});
|
|
|
|
|
2024-03-13 14:34:26 +00:00
|
|
|
testPurchases('Purchase & refund premium features');
|
|
|
|
testToggleLayoutFeatures('Toggle metering screen layout features');
|
|
|
|
testE2E('e2e');
|
|
|
|
}
|