2021-03-17 23:04:36 +00:00
|
|
|
import 'package:test/test.dart';
|
|
|
|
import 'list_test.dart' as list;
|
|
|
|
import 'match_test.dart' as match;
|
|
|
|
import 'misc_test.dart' as misc;
|
|
|
|
import 'value_test.dart' as value;
|
|
|
|
|
2021-05-14 06:11:50 +00:00
|
|
|
void main() {
|
2021-03-17 23:04:36 +00:00
|
|
|
group('list', list.main);
|
|
|
|
group('match', match.main);
|
|
|
|
group('value', value.main);
|
|
|
|
misc.main();
|
|
|
|
}
|