| 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.all_the_rest_test; | 8 library engine.all_the_rest_test; |
| 9 | 9 |
| 10 import 'package:analyzer/file_system/file_system.dart'; | 10 import 'package:analyzer/file_system/file_system.dart'; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 runReflectiveTests(DirectoryBasedSourceContainerTest); | 59 runReflectiveTests(DirectoryBasedSourceContainerTest); |
| 60 runReflectiveTests(ElementBuilderTest); | 60 runReflectiveTests(ElementBuilderTest); |
| 61 runReflectiveTests(ElementLocatorTest); | 61 runReflectiveTests(ElementLocatorTest); |
| 62 runReflectiveTests(EnumMemberBuilderTest); | 62 runReflectiveTests(EnumMemberBuilderTest); |
| 63 runReflectiveTests(ErrorReporterTest); | 63 runReflectiveTests(ErrorReporterTest); |
| 64 runReflectiveTests(ErrorSeverityTest); | 64 runReflectiveTests(ErrorSeverityTest); |
| 65 runReflectiveTests(ExitDetectorTest); | 65 runReflectiveTests(ExitDetectorTest); |
| 66 runReflectiveTests(ExitDetectorTest2); | 66 runReflectiveTests(ExitDetectorTest2); |
| 67 runReflectiveTests(FileBasedSourceTest); | 67 runReflectiveTests(FileBasedSourceTest); |
| 68 runReflectiveTests(FileUriResolverTest); | 68 runReflectiveTests(FileUriResolverTest); |
| 69 runReflectiveTests(HtmlParserTest); | 69 if (!AnalysisEngine.instance.useTaskModel) { |
| 70 runReflectiveTests(HtmlTagInfoBuilderTest); | 70 runReflectiveTests(HtmlParserTest); |
| 71 runReflectiveTests(HtmlUnitBuilderTest); | 71 runReflectiveTests(HtmlTagInfoBuilderTest); |
| 72 runReflectiveTests(HtmlWarningCodeTest); | 72 runReflectiveTests(HtmlUnitBuilderTest); |
| 73 runReflectiveTests(HtmlWarningCodeTest); |
| 74 } |
| 73 runReflectiveTests(ReferenceFinderTest); | 75 runReflectiveTests(ReferenceFinderTest); |
| 74 runReflectiveTests(SDKLibrariesReaderTest); | 76 runReflectiveTests(SDKLibrariesReaderTest); |
| 75 runReflectiveTests(SourceFactoryTest); | 77 runReflectiveTests(SourceFactoryTest); |
| 76 runReflectiveTests(ToSourceVisitorTest); | 78 runReflectiveTests(ToSourceVisitorTest); |
| 77 runReflectiveTests(UriKindTest); | 79 runReflectiveTests(UriKindTest); |
| 78 runReflectiveTests(StringScannerTest); | 80 runReflectiveTests(StringScannerTest); |
| 79 } | 81 } |
| 80 | 82 |
| 81 abstract class AbstractScannerTest { | 83 abstract class AbstractScannerTest { |
| 82 ht.AbstractScanner newScanner(String input); | 84 ht.AbstractScanner newScanner(String input); |
| (...skipping 8669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8752 if (_expectedExternalScriptName == null) { | 8754 if (_expectedExternalScriptName == null) { |
| 8753 expect(scriptSource, isNull, reason: "script $scriptIndex"); | 8755 expect(scriptSource, isNull, reason: "script $scriptIndex"); |
| 8754 } else { | 8756 } else { |
| 8755 expect(scriptSource, isNotNull, reason: "script $scriptIndex"); | 8757 expect(scriptSource, isNotNull, reason: "script $scriptIndex"); |
| 8756 String actualExternalScriptName = scriptSource.shortName; | 8758 String actualExternalScriptName = scriptSource.shortName; |
| 8757 expect(actualExternalScriptName, _expectedExternalScriptName, | 8759 expect(actualExternalScriptName, _expectedExternalScriptName, |
| 8758 reason: "script $scriptIndex"); | 8760 reason: "script $scriptIndex"); |
| 8759 } | 8761 } |
| 8760 } | 8762 } |
| 8761 } | 8763 } |
| OLD | NEW |