We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30a720b commit 37bda88Copy full SHA for 37bda88
pkg/analysis_server/test/src/services/correction/fix/organize_imports_test.dart
@@ -57,6 +57,26 @@ void f(Stream<String> args) { }
57
import 'dart:async';
58
import 'dart:io';
59
60
+void f(Stream<String> args) { }
61
+''');
62
+ }
63
+
64
+ Future<void> test_organizeImports_wildcards() async {
65
+ await resolveTestCode('''
66
+//ignore_for_file: unused_import
67
+import 'dart:io' as _;
68
+import 'dart:math' as math;
69
70
+import 'dart:async';
71
72
73
74
+ await assertHasFix('''
75
76
77
78
79
80
void f(Stream<String> args) { }
81
''');
82
}
0 commit comments