blob: 112b3da783a0f5102c6752b9fffd21184d3dc33c [file] [log] [blame]
// Copyright (c) 2019, 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:analyzer/dart/analysis/features.dart';
import 'package:analyzer/src/dart/analysis/experiments.dart';
import 'package:analyzer/src/error/codes.dart';
import 'package:analyzer/src/generated/engine.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/driver_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(UnnecessaryNonNullAssertionTest);
});
}
@reflectiveTest
class UnnecessaryNonNullAssertionTest extends DriverResolutionTest {
@override
AnalysisOptionsImpl get analysisOptions => AnalysisOptionsImpl()
..contextFeatures = FeatureSet.fromEnableFlags(
[EnableString.non_nullable],
);
test_legacy() async {
newFile('/test/lib/a.dart', content: r'''
// @dart = 2.5
var x = 0;
''');
await assertNoErrorsInCode('''
import 'a.dart';
f() {
x!;
}
''');
}
test_nonNull() async {
await assertErrorsInCode('''
f(int x) {
x!;
}
''', [
error(StaticWarningCode.UNNECESSARY_NON_NULL_ASSERTION, 14, 1),
]);
}
test_nullable() async {
await assertNoErrorsInCode('''
f(int? x) {
x!;
}
''');
}
}