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

Side by Side Diff: pkg/analysis_server/test/services/completion/dart/inherited_reference_contributor_test.dart

Issue 2394683006: Switch analysis_server to use 'package:test'. (Closed)
Patch Set: Created 4 years, 2 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 library test.services.completion.contributor.dart.inherited_ref; 5 library test.services.completion.contributor.dart.inherited_ref;
6 6
7 import 'package:analysis_server/src/protocol_server.dart'; 7 import 'package:analysis_server/src/protocol_server.dart';
8 import 'package:analysis_server/src/provisional/completion/dart/completion_dart. dart'; 8 import 'package:analysis_server/src/provisional/completion/dart/completion_dart. dart';
9 import 'package:analysis_server/src/services/completion/dart/inherited_reference _contributor.dart'; 9 import 'package:analysis_server/src/services/completion/dart/inherited_reference _contributor.dart';
10 import 'package:test/test.dart';
10 import 'package:test_reflective_loader/test_reflective_loader.dart'; 11 import 'package:test_reflective_loader/test_reflective_loader.dart';
11 import 'package:unittest/unittest.dart';
12 12
13 import '../../../utils.dart'; 13 import '../../../utils.dart';
14 import 'completion_contributor_util.dart'; 14 import 'completion_contributor_util.dart';
15 15
16 main() { 16 main() {
17 initializeTestEnvironment(); 17 initializeTestEnvironment();
18 defineReflectiveTests(InheritedContributorTest); 18 defineReflectiveSuite(() {
19 defineReflectiveTests(InheritedContributorTest);
20 });
19 } 21 }
20 22
21 @reflectiveTest 23 @reflectiveTest
22 class InheritedContributorTest extends DartCompletionContributorTest { 24 class InheritedContributorTest extends DartCompletionContributorTest {
23 @override 25 @override
24 bool get isNullExpectedReturnTypeConsideredDynamic => false; 26 bool get isNullExpectedReturnTypeConsideredDynamic => false;
25 27
26 @override 28 @override
27 DartCompletionContributor createContributor() { 29 DartCompletionContributor createContributor() {
28 return new InheritedReferenceContributor(); 30 return new InheritedReferenceContributor();
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 assertNotSuggested('foo'); 612 assertNotSuggested('foo');
611 assertNotSuggested('A'); 613 assertNotSuggested('A');
612 assertNotSuggested('x'); 614 assertNotSuggested('x');
613 assertNotSuggested('y'); 615 assertNotSuggested('y');
614 assertNotSuggested('x1'); 616 assertNotSuggested('x1');
615 assertNotSuggested('y1'); 617 assertNotSuggested('y1');
616 assertNotSuggested('x2'); 618 assertNotSuggested('x2');
617 assertNotSuggested('y2'); 619 assertNotSuggested('y2');
618 } 620 }
619 } 621 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698