2023-11-09 00:32:10 +01:00
|
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
|
|
|
|
import 'notifications_settings_test.dart' as notifications_settings_test;
|
2024-06-17 14:30:19 +02:00
|
|
|
import 'settings_billing_test.dart' as settings_billing_test;
|
2024-06-19 10:24:34 +02:00
|
|
|
import 'shortcuts_settings_test.dart' as shortcuts_settings_test;
|
2023-11-09 00:32:10 +01:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
|
|
|
notifications_settings_test.main();
|
2024-06-17 14:30:19 +02:00
|
|
|
settings_billing_test.main();
|
2024-06-19 10:24:34 +02:00
|
|
|
shortcuts_settings_test.main();
|
2023-11-09 00:32:10 +01:00
|
|
|
}
|