Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: packages/analyzer/test/src/summary/summarize_ast_strong_test.dart

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library analyzer.test.src.summary.summarize_ast_strong_test;
6
7 import 'package:test_reflective_loader/test_reflective_loader.dart';
8 import 'package:unittest/unittest.dart';
9
10 import 'summarize_ast_test.dart';
11
12 main() {
13 groupSep = ' | ';
14 defineReflectiveTests(LinkedSummarizeAstStrongTest);
15 }
16
17 /**
18 * Override of [LinkedSummarizeAstTest] which uses strong mode.
19 */
20 @reflectiveTest
21 class LinkedSummarizeAstStrongTest extends LinkedSummarizeAstTest {
22 @override
23 bool get strongMode => true;
24
25 @override
26 @failingTest
27 test_bottom_reference_shared() {
28 super.test_bottom_reference_shared();
29 }
30
31 @override
32 @failingTest
33 test_closure_executable_with_imported_return_type() {
34 super.test_closure_executable_with_imported_return_type();
35 }
36
37 @override
38 @failingTest
39 test_closure_executable_with_return_type_from_closure() {
40 super.test_closure_executable_with_return_type_from_closure();
41 }
42
43 @override
44 @failingTest
45 test_closure_executable_with_unimported_return_type() {
46 super.test_closure_executable_with_unimported_return_type();
47 }
48
49 @override
50 @failingTest
51 test_implicit_dependencies_follow_other_dependencies() {
52 super.test_implicit_dependencies_follow_other_dependencies();
53 }
54
55 @override
56 @failingTest
57 test_inferred_type_refers_to_function_typed_param_of_typedef() {
58 super.test_inferred_type_refers_to_function_typed_param_of_typedef();
59 }
60
61 @override
62 @failingTest
63 test_inferred_type_refers_to_nested_function_typed_param() {
64 super.test_inferred_type_refers_to_nested_function_typed_param();
65 }
66
67 @override
68 @failingTest
69 test_inferred_type_refers_to_nested_function_typed_param_named() {
70 super.test_inferred_type_refers_to_nested_function_typed_param_named();
71 }
72
73 @override
74 @failingTest
75 test_initializer_executable_with_bottom_return_type() {
76 super.test_initializer_executable_with_bottom_return_type();
77 }
78
79 @override
80 @failingTest
81 test_initializer_executable_with_imported_return_type() {
82 super.test_initializer_executable_with_imported_return_type();
83 }
84
85 @override
86 @failingTest
87 test_initializer_executable_with_return_type_from_closure() {
88 super.test_initializer_executable_with_return_type_from_closure();
89 }
90
91 @override
92 @failingTest
93 test_initializer_executable_with_return_type_from_closure_field() {
94 super.test_initializer_executable_with_return_type_from_closure_field();
95 }
96
97 @override
98 @failingTest
99 test_initializer_executable_with_return_type_from_closure_local() {
100 super.test_initializer_executable_with_return_type_from_closure_local();
101 }
102
103 @override
104 @failingTest
105 test_initializer_executable_with_unimported_return_type() {
106 super.test_initializer_executable_with_unimported_return_type();
107 }
108
109 @override
110 @failingTest
111 test_syntheticFunctionType_genericClosure() {
112 super.test_syntheticFunctionType_genericClosure();
113 }
114
115 @override
116 @failingTest
117 test_syntheticFunctionType_genericClosure_inGenericFunction() {
118 super.test_syntheticFunctionType_genericClosure_inGenericFunction();
119 }
120
121 @override
122 @failingTest
123 test_syntheticFunctionType_inGenericClass() {
124 super.test_syntheticFunctionType_inGenericClass();
125 }
126
127 @override
128 @failingTest
129 test_syntheticFunctionType_inGenericFunction() {
130 super.test_syntheticFunctionType_inGenericFunction();
131 }
132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698