blob: 52e90027e69bea9450cf7462c9ad43185183a854 [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/src/error/codes.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(UndefinedHiddenNameTest);
defineReflectiveTests(UndefinedHiddenNameWithoutNullSafetyTest);
});
}
@reflectiveTest
class UndefinedHiddenNameTest extends PubPackageResolutionTest
with UndefinedHiddenNameTestCases {}
mixin UndefinedHiddenNameTestCases on PubPackageResolutionTest {
test_export() async {
newFile2('$testPackageLibPath/lib1.dart', '');
await assertErrorsInCode(r'''
export 'lib1.dart' hide a;
''', [
error(HintCode.UNDEFINED_HIDDEN_NAME, 24, 1),
]);
}
test_import() async {
newFile2('$testPackageLibPath/lib1.dart', '');
await assertErrorsInCode(r'''
import 'lib1.dart' hide a;
''', [
error(HintCode.UNUSED_IMPORT, 7, 11),
error(HintCode.UNDEFINED_HIDDEN_NAME, 24, 1),
]);
}
}
@reflectiveTest
class UndefinedHiddenNameWithoutNullSafetyTest extends PubPackageResolutionTest
with UndefinedHiddenNameTestCases, WithoutNullSafetyMixin {}