From efb547fd67a8bd01bb80efb04a144c4a9b5e79e1 Mon Sep 17 00:00:00 2001 From: Pascal Welsch Date: Thu, 29 Nov 2018 14:58:40 +0100 Subject: [PATCH] Allow code coverage report pub global run coverage:collect_coverage --port=8111 -o coverage.json --resume-isolates --wait-paused & dart --observe=8111 test/rxdart_test.dart & pub global run coverage:format_coverage --package-root=packages --report-on lib --in coverage.json --out lcov.info --lcov --- test/dart_kollection_test.dart | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/dart_kollection_test.dart diff --git a/test/dart_kollection_test.dart b/test/dart_kollection_test.dart new file mode 100644 index 00000000..c40bcdf6 --- /dev/null +++ b/test/dart_kollection_test.dart @@ -0,0 +1,20 @@ +import 'collection/iterable_extensions_test.dart' as iterable_extensions_test; +import 'collection/list_mutable_test.dart' as list_mutable_test; +import 'collection/list_test.dart' as list_test; +import 'collection/map_empty_test.dart' as map_empty_test; +import 'collection/map_extensions_test.dart' as map_extensions_test; +import 'collection/map_test.dart' as map_test; +import 'collection/set_test.dart' as set_test; +import 'collections_test.dart' as collections_test; + +main() { + collections_test.main(); + iterable_extensions_test.main(); + list_test.main(); + list_mutable_test.main(); + list_test.main(); + map_empty_test.main(); + map_extensions_test.main(); + map_test.main(); + set_test.main(); +}