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

Side by Side Diff: pkg/analysis_server/test/integration/server/get_version_test.dart

Issue 2564863003: Get all integration tests running with the new driver (Closed)
Patch Set: Created 4 years 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.integration.server.get.version;
6
7 import 'package:test_reflective_loader/test_reflective_loader.dart'; 5 import 'package:test_reflective_loader/test_reflective_loader.dart';
8 6
9 import '../integration_tests.dart'; 7 import '../integration_tests.dart';
10 8
11 main() { 9 main() {
12 defineReflectiveSuite(() { 10 defineReflectiveSuite(() {
13 defineReflectiveTests(Test); 11 defineReflectiveTests(GetVersionTest);
12 defineReflectiveTests(GetVersionTest_Driver);
14 }); 13 });
15 } 14 }
16 15
17 @reflectiveTest 16 class AbstractGetVersionTest extends AbstractAnalysisServerIntegrationTest {
18 class Test extends AbstractAnalysisServerIntegrationTest {
19 test_getVersion() { 17 test_getVersion() {
20 return sendServerGetVersion(); 18 return sendServerGetVersion();
21 } 19 }
22 } 20 }
21
22 @reflectiveTest
23 class GetVersionTest extends AbstractGetVersionTest {}
24
25 @reflectiveTest
26 class GetVersionTest_Driver extends AbstractGetVersionTest {
27 @override
28 bool get enableNewAnalysisDriver => true;
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698