| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 analyzer.test.generated.inheritance_manager_test; | 5 library analyzer.test.generated.inheritance_manager_test; |
| 6 | 6 |
| 7 import 'dart:collection'; | 7 import 'dart:collection'; |
| 8 | 8 |
| 9 import 'package:analyzer/dart/element/element.dart'; | 9 import 'package:analyzer/dart/element/element.dart'; |
| 10 import 'package:analyzer/dart/element/type.dart'; | 10 import 'package:analyzer/dart/element/type.dart'; |
| 11 import 'package:analyzer/file_system/memory_file_system.dart'; | 11 import 'package:analyzer/file_system/memory_file_system.dart'; |
| 12 import 'package:analyzer/src/dart/element/element.dart'; | 12 import 'package:analyzer/src/dart/element/element.dart'; |
| 13 import 'package:analyzer/src/dart/resolver/inheritance_manager.dart'; | 13 import 'package:analyzer/src/dart/resolver/inheritance_manager.dart'; |
| 14 import 'package:analyzer/src/generated/engine.dart'; | 14 import 'package:analyzer/src/generated/engine.dart'; |
| 15 import 'package:analyzer/src/generated/error.dart'; | 15 import 'package:analyzer/src/generated/error.dart'; |
| 16 import 'package:analyzer/src/generated/resolver.dart'; | 16 import 'package:analyzer/src/generated/resolver.dart'; |
| 17 import 'package:analyzer/src/generated/source_io.dart'; | 17 import 'package:analyzer/src/generated/source_io.dart'; |
| 18 import 'package:analyzer/src/generated/testing/ast_factory.dart'; | 18 import 'package:analyzer/src/generated/testing/ast_factory.dart'; |
| 19 import 'package:analyzer/src/generated/testing/element_factory.dart'; | 19 import 'package:analyzer/src/generated/testing/element_factory.dart'; |
| 20 import 'package:analyzer/src/generated/testing/test_type_provider.dart'; | 20 import 'package:analyzer/src/generated/testing/test_type_provider.dart'; |
| 21 import 'package:analyzer/src/generated/utilities_dart.dart'; | 21 import 'package:analyzer/src/generated/utilities_dart.dart'; |
| 22 import 'package:analyzer/src/source/source_resource.dart'; | 22 import 'package:analyzer/src/source/source_resource.dart'; |
| 23 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 23 import 'package:unittest/unittest.dart'; | 24 import 'package:unittest/unittest.dart'; |
| 24 | 25 |
| 25 import '../reflective_tests.dart'; | |
| 26 import '../utils.dart'; | 26 import '../utils.dart'; |
| 27 import 'analysis_context_factory.dart'; | 27 import 'analysis_context_factory.dart'; |
| 28 import 'test_support.dart'; | 28 import 'test_support.dart'; |
| 29 | 29 |
| 30 main() { | 30 main() { |
| 31 initializeTestEnvironment(); | 31 initializeTestEnvironment(); |
| 32 runReflectiveTests(InheritanceManagerTest); | 32 defineReflectiveTests(InheritanceManagerTest); |
| 33 } | 33 } |
| 34 | 34 |
| 35 @reflectiveTest | 35 @reflectiveTest |
| 36 class InheritanceManagerTest { | 36 class InheritanceManagerTest { |
| 37 /** | 37 /** |
| 38 * The type provider used to access the types. | 38 * The type provider used to access the types. |
| 39 */ | 39 */ |
| 40 TestTypeProvider _typeProvider; | 40 TestTypeProvider _typeProvider; |
| 41 | 41 |
| 42 /** | 42 /** |
| (...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1313 Source source = new FileSource(resourceProvider.getFile("/test.dart")); | 1313 Source source = new FileSource(resourceProvider.getFile("/test.dart")); |
| 1314 CompilationUnitElementImpl definingCompilationUnit = | 1314 CompilationUnitElementImpl definingCompilationUnit = |
| 1315 new CompilationUnitElementImpl("test.dart"); | 1315 new CompilationUnitElementImpl("test.dart"); |
| 1316 definingCompilationUnit.librarySource = | 1316 definingCompilationUnit.librarySource = |
| 1317 definingCompilationUnit.source = source; | 1317 definingCompilationUnit.source = source; |
| 1318 _definingLibrary = ElementFactory.library(context, "test"); | 1318 _definingLibrary = ElementFactory.library(context, "test"); |
| 1319 _definingLibrary.definingCompilationUnit = definingCompilationUnit; | 1319 _definingLibrary.definingCompilationUnit = definingCompilationUnit; |
| 1320 return new InheritanceManager(_definingLibrary); | 1320 return new InheritanceManager(_definingLibrary); |
| 1321 } | 1321 } |
| 1322 } | 1322 } |
| OLD | NEW |