| Index: pkg/analysis_server/test/integration/analysis/highlights_test2.dart
|
| diff --git a/pkg/analysis_server/test/integration/analysis/highlights_test2.dart b/pkg/analysis_server/test/integration/analysis/highlights_test2.dart
|
| index b1a70c503871fc8fd1e5ab84121bc4e79a2971b8..b05aa1f41b12045abc2d6be456f1866102dc159d 100644
|
| --- a/pkg/analysis_server/test/integration/analysis/highlights_test2.dart
|
| +++ b/pkg/analysis_server/test/integration/analysis/highlights_test2.dart
|
| @@ -2,8 +2,6 @@
|
| // 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.
|
|
|
| -library test.integration.analysis.highlights2;
|
| -
|
| import 'dart:async';
|
|
|
| import 'package:analysis_server/plugin/protocol/protocol.dart';
|
| @@ -15,11 +13,12 @@ import '../integration_tests.dart';
|
| main() {
|
| defineReflectiveSuite(() {
|
| defineReflectiveTests(AnalysisHighlightsTest);
|
| + defineReflectiveTests(AnalysisHighlightsTest_Driver);
|
| });
|
| }
|
|
|
| -@reflectiveTest
|
| -class AnalysisHighlightsTest extends AbstractAnalysisServerIntegrationTest {
|
| +class AbstractAnalysisHighlightsTest
|
| + extends AbstractAnalysisServerIntegrationTest {
|
| Future startServer(
|
| {bool checked: true, int diagnosticPort, int servicesPort}) {
|
| return server.start(
|
| @@ -160,3 +159,12 @@ int topLevelVariable;
|
| });
|
| }
|
| }
|
| +
|
| +@reflectiveTest
|
| +class AnalysisHighlightsTest extends AbstractAnalysisHighlightsTest {}
|
| +
|
| +@reflectiveTest
|
| +class AnalysisHighlightsTest_Driver extends AbstractAnalysisHighlightsTest {
|
| + @override
|
| + bool get enableNewAnalysisDriver => true;
|
| +}
|
|
|