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

Side by Side Diff: pkg/analyzer/test/generated/strong_mode_test.dart

Issue 2399913002: Remove 'initializeTestEnvironment' from 'analyzer'. (Closed)
Patch Set: Created 4 years, 2 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
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.strong_mode_test; 5 library analyzer.test.generated.strong_mode_test;
6 6
7 import 'package:analyzer/dart/ast/ast.dart'; 7 import 'package:analyzer/dart/ast/ast.dart';
8 import 'package:analyzer/dart/element/element.dart'; 8 import 'package:analyzer/dart/element/element.dart';
9 import 'package:analyzer/dart/element/type.dart'; 9 import 'package:analyzer/dart/element/type.dart';
10 import 'package:analyzer/src/dart/element/element.dart'; 10 import 'package:analyzer/src/dart/element/element.dart';
11 import 'package:analyzer/src/error/codes.dart'; 11 import 'package:analyzer/src/error/codes.dart';
12 import 'package:analyzer/src/generated/engine.dart'; 12 import 'package:analyzer/src/generated/engine.dart';
13 import 'package:analyzer/src/generated/source_io.dart'; 13 import 'package:analyzer/src/generated/source_io.dart';
14 import 'package:test/test.dart'; 14 import 'package:test/test.dart';
15 import 'package:test_reflective_loader/test_reflective_loader.dart'; 15 import 'package:test_reflective_loader/test_reflective_loader.dart';
16 16
17 import '../utils.dart'; 17 import '../utils.dart';
18 import 'resolver_test_case.dart'; 18 import 'resolver_test_case.dart';
19 19
20 main() { 20 main() {
21 initializeTestEnvironment();
22 defineReflectiveSuite(() { 21 defineReflectiveSuite(() {
23 defineReflectiveTests(StrongModeDownwardsInferenceTest); 22 defineReflectiveTests(StrongModeDownwardsInferenceTest);
24 defineReflectiveTests(StrongModeStaticTypeAnalyzer2Test); 23 defineReflectiveTests(StrongModeStaticTypeAnalyzer2Test);
25 defineReflectiveTests(StrongModeTypePropagationTest); 24 defineReflectiveTests(StrongModeTypePropagationTest);
26 }); 25 });
27 } 26 }
28 27
29 /** 28 /**
30 * Strong mode static analyzer downwards inference tests 29 * Strong mode static analyzer downwards inference tests
31 */ 30 */
(...skipping 2370 matching lines...) Expand 10 before | Expand all | Expand 10 after
2402 main() { 2401 main() {
2403 var v = x; 2402 var v = x;
2404 v; // marker 2403 v; // marker
2405 } 2404 }
2406 int x = 3; 2405 int x = 3;
2407 '''; 2406 ''';
2408 assertPropagatedAssignedType(code, typeProvider.intType, null); 2407 assertPropagatedAssignedType(code, typeProvider.intType, null);
2409 assertTypeOfMarkedExpression(code, typeProvider.intType, null); 2408 assertTypeOfMarkedExpression(code, typeProvider.intType, null);
2410 } 2409 }
2411 } 2410 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/generated/static_warning_code_test.dart ('k') | pkg/analyzer/test/generated/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698