| 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.simple_resolver_test; | 5 library analyzer.test.generated.simple_resolver_test; |
| 6 | 6 |
| 7 import 'package:analyzer/dart/ast/ast.dart'; | 7 import 'package:analyzer/dart/ast/ast.dart'; |
| 8 import 'package:analyzer/dart/ast/visitor.dart'; | 8 import 'package:analyzer/dart/ast/visitor.dart'; |
| 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/exception/exception.dart'; | 11 import 'package:analyzer/exception/exception.dart'; |
| 12 import 'package:analyzer/src/error/codes.dart'; | 12 import 'package:analyzer/src/error/codes.dart'; |
| 13 import 'package:analyzer/src/generated/engine.dart'; | 13 import 'package:analyzer/src/generated/engine.dart'; |
| 14 import 'package:analyzer/src/generated/source_io.dart'; | 14 import 'package:analyzer/src/generated/source_io.dart'; |
| 15 import 'package:test/test.dart'; |
| 15 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 16 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 16 import 'package:unittest/unittest.dart'; | |
| 17 | 17 |
| 18 import '../utils.dart'; | 18 import '../utils.dart'; |
| 19 import 'resolver_test_case.dart'; | 19 import 'resolver_test_case.dart'; |
| 20 import 'test_support.dart'; | 20 import 'test_support.dart'; |
| 21 | 21 |
| 22 main() { | 22 main() { |
| 23 initializeTestEnvironment(); | 23 initializeTestEnvironment(); |
| 24 defineReflectiveTests(SimpleResolverTest); | 24 defineReflectiveSuite(() { |
| 25 defineReflectiveTests(SimpleResolverTest); |
| 26 }); |
| 25 } | 27 } |
| 26 | 28 |
| 27 @reflectiveTest | 29 @reflectiveTest |
| 28 class SimpleResolverTest extends ResolverTestCase { | 30 class SimpleResolverTest extends ResolverTestCase { |
| 29 void test_argumentResolution_required_matching() { | 31 void test_argumentResolution_required_matching() { |
| 30 Source source = addSource(r''' | 32 Source source = addSource(r''' |
| 31 class A { | 33 class A { |
| 32 void f() { | 34 void f() { |
| 33 g(1, 2, 3); | 35 g(1, 2, 3); |
| 34 } | 36 } |
| (...skipping 1798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1833 // check propagated type | 1835 // check propagated type |
| 1834 FunctionType propagatedType = node.propagatedType as FunctionType; | 1836 FunctionType propagatedType = node.propagatedType as FunctionType; |
| 1835 expect(propagatedType.returnType, test.typeProvider.stringType); | 1837 expect(propagatedType.returnType, test.typeProvider.stringType); |
| 1836 } on AnalysisException catch (e, stackTrace) { | 1838 } on AnalysisException catch (e, stackTrace) { |
| 1837 thrownException[0] = new CaughtException(e, stackTrace); | 1839 thrownException[0] = new CaughtException(e, stackTrace); |
| 1838 } | 1840 } |
| 1839 } | 1841 } |
| 1840 return null; | 1842 return null; |
| 1841 } | 1843 } |
| 1842 } | 1844 } |
| OLD | NEW |