blob: 028930dc0c7f2500dbf6959ce91879daffb11500 [file] [log] [blame]
// Copyright (c) 2018, 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.
@TestOn('vm')
library dart_style.test.fix_test;
import 'package:test/test.dart';
import 'package:dart_style/dart_style.dart';
import 'utils.dart';
void main() {
testFile(
'fixes/named_default_separator.unit', [StyleFix.namedDefaultSeparator]);
testFile('fixes/doc_comments.stmt', [StyleFix.docComments]);
testFile('fixes/function_typedefs.unit', [StyleFix.functionTypedefs]);
testFile('fixes/optional_const.unit', [StyleFix.optionalConst]);
testFile('fixes/optional_new.stmt', [StyleFix.optionalNew]);
testFile('fixes/single_cascade_statements.stmt',
[StyleFix.singleCascadeStatements]);
}