blob: 4f3885f84cf577fb02120b6cdcb32cbcdf2aa67a [file] [log] [blame]
// Copyright (c) 2018, 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:analyzer_plugin/utilities/fixes/fixes.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'fix_processor.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ImportLibraryShowTest);
});
}
@reflectiveTest
class ImportLibraryShowTest extends FixProcessorTest {
@override
FixKind get kind => DartFixKind.IMPORT_LIBRARY_SHOW;
test_package() async {
addSource('/home/test/lib/lib.dart', '''
class A {}
class B {}
''');
await resolveTestUnit('''
import 'lib.dart' show A;
main() {
A a;
B b;
print('\$a \$b');
}
''');
await assertHasFix('''
import 'lib.dart' show A, B;
main() {
A a;
B b;
print('\$a \$b');
}
''');
}
test_sdk() async {
await resolveTestUnit('''
import 'dart:collection' show HashMap;
main() {
HashMap s = null;
LinkedHashMap f = null;
print('\$s \$f');
}
''');
await assertHasFix('''
import 'dart:collection' show HashMap, LinkedHashMap;
main() {
HashMap s = null;
LinkedHashMap f = null;
print('\$s \$f');
}
''');
}
}