blob: bd4e2e1455332202b2fd7f56cf9f365da17dc03a [file] [log] [blame]
// Copyright (c) 2020, 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:analysis_server/src/services/correction/fix.dart';
import 'package:analysis_server/src/services/linter/lint_names.dart';
import 'package:analyzer_plugin/utilities/fixes/fixes.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'fix_processor.dart';
void main() {
defineReflectiveSuite(() {
defineReflectiveTests(ReplaceWithEightDigitHexTest);
});
}
@reflectiveTest
class ReplaceWithEightDigitHexTest extends FixProcessorLintTest {
@override
FixKind get kind => DartFixKind.REPLACE_WITH_EIGHT_DIGIT_HEX;
@override
String get lintCode => LintNames.use_full_hex_values_for_flutter_colors;
Future<void> test_notHex() async {
await resolveTestCode('''
library dart.ui;
var c = Color(1);
class Color {
Color(int value);
}
''');
await assertHasFix('''
library dart.ui;
var c = Color(0x00000001);
class Color {
Color(int value);
}
''');
}
Future<void> test_short() async {
await resolveTestCode('''
library dart.ui;
var c = Color(0x000001);
class Color {
Color(int value);
}
''');
await assertHasFix('''
library dart.ui;
var c = Color(0x00000001);
class Color {
Color(int value);
}
''');
}
}