4eaf2d68cd
This is marked as experimental, and is only intended to be used by `dart fix` as a way of formatting the files that were modified if the analysis options file indicates that they ought to be formatted. Change-Id: I288baebfc7cb3f82cc361bdc19835e43064eb0d0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/238921 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
32 lines
1.1 KiB
Dart
32 lines
1.1 KiB
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.
|
|
|
|
import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
|
import 'assists_test.dart' as assists;
|
|
import 'bulk_fixes_test.dart' as bulk_fixes;
|
|
import 'fixes_test.dart' as fixes;
|
|
import 'format_if_enabled_test.dart' as format_if_enabled;
|
|
import 'format_test.dart' as format;
|
|
import 'organize_directives_test.dart' as organize_directives;
|
|
import 'postfix_completion_test.dart' as postfix_completion;
|
|
import 'refactoring_test.dart' as refactoring;
|
|
import 'sort_members_test.dart' as sort_members;
|
|
import 'statement_completion_test.dart' as statement_completion;
|
|
|
|
void main() {
|
|
defineReflectiveSuite(() {
|
|
assists.main();
|
|
bulk_fixes.main();
|
|
fixes.main();
|
|
format.main();
|
|
format_if_enabled.main();
|
|
organize_directives.main();
|
|
postfix_completion.main();
|
|
refactoring.main();
|
|
sort_members.main();
|
|
statement_completion.main();
|
|
}, name: 'edit');
|
|
}
|