blob: 503115b50759f69b056d85775503ae4b5646325f [file] [log] [blame] [edit]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'basic_test.dart' as basic;
import 'blaze_test.dart' as blaze;
import 'blaze_watcher_test.dart' as blaze_watcher;
import 'gn_test.dart' as gn;
import 'pub_test.dart' as pub;
main() {
defineReflectiveSuite(() {
basic.main();
blaze.main();
blaze_watcher.main();
gn.main();
pub.main();
}, name: 'workspace');
}