6fb12789e7
R=brianwilkerson@google.com, danrubel@google.com, scheglov@google.com Review URL: https://codereview.chromium.org//833903005 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42835 260f80e4-7a28-3924-810f-c04153c831b5
28 lines
756 B
Dart
28 lines
756 B
Dart
// 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.
|
|
|
|
library test.edit.all;
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
import 'assists_test.dart' as assists_test;
|
|
import 'fixes_test.dart' as fixes_test;
|
|
import 'format_test.dart' as format_test;
|
|
import 'refactoring_test.dart' as refactoring_test;
|
|
import 'sort_members_test.dart' as sort_members_test;
|
|
|
|
/**
|
|
* Utility for manually running all tests.
|
|
*/
|
|
main() {
|
|
groupSep = ' | ';
|
|
group('edit', () {
|
|
assists_test.main();
|
|
fixes_test.main();
|
|
format_test.main();
|
|
refactoring_test.main();
|
|
sort_members_test.main();
|
|
});
|
|
}
|