blob: 4fba9ed57fb876a193ad5d2f14a50925d1372b8a [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(UndefinedShownNameTest);
defineReflectiveTests(UndefinedShownNameWithNullSafetyTest);
});
}
@reflectiveTest
class UndefinedShownNameTest extends PubPackageResolutionTest {
test_export() async {
newFile('$testPackageLibPath/lib1.dart');
await assertErrorsInCode(r'''
export 'lib1.dart' show a;
''', [
error(HintCode.UNDEFINED_SHOWN_NAME, 24, 1),
]);
}
test_import() async {
newFile('$testPackageLibPath/lib1.dart');
await assertErrorsInCode(r'''
import 'lib1.dart' show a;
''', [
error(HintCode.UNUSED_IMPORT, 7, 11),
error(HintCode.UNDEFINED_SHOWN_NAME, 24, 1),
]);
}
}
@reflectiveTest
class UndefinedShownNameWithNullSafetyTest extends UndefinedShownNameTest
with WithNullSafetyMixin {}