blob: ba6c63a844455fabb5c1b6adacc6039a58d9d8d6 [file] [log] [blame]
// Copyright (c) 2022, 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 '../rule_test_support.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(AvoidAnnotatingWithDynamicTest);
});
}
@reflectiveTest
class AvoidAnnotatingWithDynamicTest extends LintRuleTest {
@override
String get lintRule => 'avoid_annotating_with_dynamic';
test_fieldFormals() async {
await assertDiagnostics(r'''
class A {
var a;
A(dynamic this.a);
}
''', [
lint(23, 14),
]);
}
test_super() async {
await assertDiagnostics(r'''
class A {
var a;
var b;
A(this.a, this.b);
}
class B extends A {
B(dynamic super.a, dynamic super.b);
}
''', [
lint(75, 15),
lint(92, 15),
]);
}
}