Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: pkg/analysis_server/test/integration/edit/is_postfix_completion_applicable_test.dart

Issue 2960073002: Generate constants in server as we do in plugin (Closed)
Patch Set: improve names Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'package:analysis_server/protocol/protocol_generated.dart'; 5 import 'package:analysis_server/protocol/protocol_generated.dart';
6 import 'package:analyzer_plugin/protocol/protocol_common.dart';
7 import 'package:test/test.dart'; 6 import 'package:test/test.dart';
8 import 'package:test_reflective_loader/test_reflective_loader.dart'; 7 import 'package:test_reflective_loader/test_reflective_loader.dart';
9 8
10 import '../support/integration_tests.dart'; 9 import '../support/integration_tests.dart';
11 10
12 main() { 11 main() {
13 defineReflectiveSuite(() { 12 defineReflectiveSuite(() {
14 defineReflectiveTests(IsPostfixCompletionApplicableTest); 13 defineReflectiveTests(IsPostfixCompletionApplicableTest);
15 }); 14 });
16 } 15 }
(...skipping 16 matching lines...) Expand all
33 32
34 await analysisFinished; 33 await analysisFinished;
35 expect(currentAnalysisErrors[pathname], isEmpty); 34 expect(currentAnalysisErrors[pathname], isEmpty);
36 35
37 // expect a postfix completion applicable result 36 // expect a postfix completion applicable result
38 EditIsPostfixCompletionApplicableResult result = 37 EditIsPostfixCompletionApplicableResult result =
39 await sendEditIsPostfixCompletionApplicable(pathname, '.tryon', loc); 38 await sendEditIsPostfixCompletionApplicable(pathname, '.tryon', loc);
40 expect(result.value, isTrue); 39 expect(result.value, isTrue);
41 } 40 }
42 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698