| Index: pkg/analysis_server/test/integration/analysis/outline_test.dart
|
| diff --git a/pkg/analysis_server/test/integration/analysis/outline_test.dart b/pkg/analysis_server/test/integration/analysis/outline_test.dart
|
| index 23f2cbdbc64ea1fd7b57b5446d5a2cf7ae62f1a7..3e2e5a40f02d9966a68abbc97e821501f74632dd 100644
|
| --- a/pkg/analysis_server/test/integration/analysis/outline_test.dart
|
| +++ b/pkg/analysis_server/test/integration/analysis/outline_test.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.outline;
|
| -
|
| import 'package:analysis_server/plugin/protocol/protocol.dart';
|
| import 'package:test/test.dart';
|
| import 'package:test_reflective_loader/test_reflective_loader.dart';
|
| @@ -12,12 +10,12 @@ import '../integration_tests.dart';
|
|
|
| main() {
|
| defineReflectiveSuite(() {
|
| - defineReflectiveTests(Test);
|
| + defineReflectiveTests(OutlineTest);
|
| + defineReflectiveTests(OutlineTest_Driver);
|
| });
|
| }
|
|
|
| -@reflectiveTest
|
| -class Test extends AbstractAnalysisServerIntegrationTest {
|
| +class AbstractOutlineTest extends AbstractAnalysisServerIntegrationTest {
|
| /**
|
| * Verify that the range of source text covered by the given outline objects
|
| * is connected (the end of each object in the list corresponds to the start
|
| @@ -83,3 +81,18 @@ class Class2 {
|
| });
|
| }
|
| }
|
| +
|
| +@reflectiveTest
|
| +class OutlineTest extends AbstractOutlineTest {}
|
| +
|
| +@reflectiveTest
|
| +class OutlineTest_Driver extends AbstractOutlineTest {
|
| + @override
|
| + bool get enableNewAnalysisDriver => true;
|
| +
|
| + @failingTest
|
| + test_outline() {
|
| + // NoSuchMethodError: The getter 'element' was called on null.
|
| + return super.test_outline();
|
| + }
|
| +}
|
|
|