Chromium Code Reviews| Index: pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart |
| diff --git a/pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart |
| index 083203e61467e97ceff176dea57efadca531ec19..d3352c24a8cdc14a584f63c647c810797688a56c 100644 |
| --- a/pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart |
| +++ b/pkg/analysis_server/test/services/completion/dart/keyword_contributor_test.dart |
| @@ -751,6 +751,28 @@ class KeywordContributorTest extends DartCompletionContributorTest { |
| assertSuggestKeywords([]); |
| } |
| + @soloTest |
|
danrubel
2017/09/03 16:08:11
Remove @soloTest here and below?
Brian Wilkerson
2017/09/03 20:04:18
Done
|
| + test_class_member_const_afterStatic() async { |
| + addTestSource(''' |
| +class C { |
| + static c^ |
| +} |
| +'''); |
| + await computeSuggestions(); |
| + assertSuggestKeywords([Keyword.CONST, Keyword.FINAL]); |
| + } |
| + |
| + @soloTest |
| + test_class_member_final_afterStatic() async { |
| + addTestSource(''' |
| +class C { |
| + static f^ |
| +} |
| +'''); |
| + await computeSuggestions(); |
| + assertSuggestKeywords([Keyword.CONST, Keyword.FINAL]); |
| + } |
| + |
| test_class_name() async { |
| addTestSource('class ^'); |
| await computeSuggestions(); |