| OLD | NEW |
| 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 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 7 | 7 |
| 8 library engine.engine_test; | 8 library engine.engine_test; |
| 9 | 9 |
| 10 import 'dart:async'; | 10 import 'dart:async'; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 import 'package:analyzer/src/generated/testing/ast_factory.dart'; | 28 import 'package:analyzer/src/generated/testing/ast_factory.dart'; |
| 29 import 'package:analyzer/src/generated/testing/element_factory.dart'; | 29 import 'package:analyzer/src/generated/testing/element_factory.dart'; |
| 30 import 'package:analyzer/src/generated/utilities_collection.dart'; | 30 import 'package:analyzer/src/generated/utilities_collection.dart'; |
| 31 import 'package:analyzer/src/string_source.dart'; | 31 import 'package:analyzer/src/string_source.dart'; |
| 32 import 'package:analyzer/src/task/task_dart.dart'; | 32 import 'package:analyzer/src/task/task_dart.dart'; |
| 33 import 'package:typed_mock/typed_mock.dart'; | 33 import 'package:typed_mock/typed_mock.dart'; |
| 34 import 'package:unittest/unittest.dart'; | 34 import 'package:unittest/unittest.dart'; |
| 35 import 'package:watcher/src/utils.dart'; | 35 import 'package:watcher/src/utils.dart'; |
| 36 | 36 |
| 37 import '../reflective_tests.dart'; | 37 import '../reflective_tests.dart'; |
| 38 import 'all_the_rest.dart'; | 38 import 'all_the_rest_test.dart'; |
| 39 import 'resolver_test.dart'; | 39 import 'resolver_test.dart'; |
| 40 import 'test_support.dart'; | 40 import 'test_support.dart'; |
| 41 | 41 |
| 42 | 42 |
| 43 main() { | 43 main() { |
| 44 groupSep = ' | '; | 44 groupSep = ' | '; |
| 45 runReflectiveTests(AnalysisCacheTest); | 45 runReflectiveTests(AnalysisCacheTest); |
| 46 runReflectiveTests(AnalysisContextImplTest); | 46 runReflectiveTests(AnalysisContextImplTest); |
| 47 runReflectiveTests(AnalysisTaskTest); | 47 runReflectiveTests(AnalysisTaskTest); |
| 48 runReflectiveTests(AnalysisOptionsImplTest); | 48 runReflectiveTests(AnalysisOptionsImplTest); |
| (...skipping 7425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7474 bool contains(Source source) => source == libB; | 7474 bool contains(Source source) => source == libB; |
| 7475 } | 7475 } |
| 7476 | 7476 |
| 7477 | 7477 |
| 7478 class _UniversalCachePartitionTest_test_setMaxCacheSize implements | 7478 class _UniversalCachePartitionTest_test_setMaxCacheSize implements |
| 7479 CacheRetentionPolicy { | 7479 CacheRetentionPolicy { |
| 7480 @override | 7480 @override |
| 7481 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => | 7481 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => |
| 7482 RetentionPriority.LOW; | 7482 RetentionPriority.LOW; |
| 7483 } | 7483 } |
| OLD | NEW |