blob: 52327e66b96a68e1b431fd052b5489ad1a63ea1e [file] [log] [blame]
// Copyright (c) 2021, 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.
// @dart = 2.9
import 'package:analyzer_plugin/protocol/protocol_common.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'completion_relevance.dart';
void main() {
defineReflectiveSuite(() {
defineReflectiveTests(IsNoSuchMethodTest);
});
}
@reflectiveTest
class IsNoSuchMethodTest extends CompletionRelevanceTest {
Future<void> test_notSuper() async {
await addTestFile('''
void foo(Object o) {
o.^;
}
''');
var toStringSuggestion = suggestionWith(
completion: 'toString',
element: ElementKind.METHOD,
kind: CompletionSuggestionKind.INVOCATION);
var noSuchMethodSuggestion = suggestionWith(
completion: 'noSuchMethod',
element: ElementKind.METHOD,
kind: CompletionSuggestionKind.INVOCATION);
assertOrder([toStringSuggestion, noSuchMethodSuggestion]);
}
Future<void> test_super() async {
await addTestFile('''
class C {
dynamic noSuchMethod(Invocation i) => super.^;
}
''');
var toStringSuggestion = suggestionWith(
completion: 'toString',
element: ElementKind.METHOD,
kind: CompletionSuggestionKind.INVOCATION);
var noSuchMethodSuggestion = suggestionWith(
completion: 'noSuchMethod',
element: ElementKind.METHOD,
kind: CompletionSuggestionKind.INVOCATION);
assertOrder([noSuchMethodSuggestion, toStringSuggestion]);
}
}