blob: d5ce9da104740d06426c46831d32659be1a41f39 [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/optional_const.unit", [StyleFix.optionalConst]);
testFile("fixes/optional_new.stmt", [StyleFix.optionalNew]);
}