Skip to content

Commit

Permalink
test: added common entrypoint to all tests
Browse files Browse the repository at this point in the history
This can be used to generate code coverage reports
  • Loading branch information
RatakondalaArun committed Jul 10, 2022
1 parent 96a54a5 commit 24bc6e7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions test/all_tests.dart
@@ -0,0 +1,25 @@
import 'package:test/test.dart';

import 'abs/icon_generator_test.dart' as icon_generator_test;
import 'android_test.dart' as android_test;
import 'flutter_launcher_icons_config_test.dart' as fli_config;
import 'main_test.dart' as main_test;
import 'utils_test.dart' as utils_test;
import 'web/web_template_test.dart' as web_template_test;
import 'web/web_icon_generator_test.dart' as web_icon_gen_test;

void main() {
group('Flutter launcher icons', () {
// others
utils_test.main();
fli_config.main();
icon_generator_test.main();

main_test.main();
// android
android_test.main();
// web
web_template_test.main();
web_icon_gen_test.main();
});
}

0 comments on commit 24bc6e7

Please sign in to comment.