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.src.dart.constant.value_test; | 5 library analyzer.test.src.dart.constant.value_test; |
6 | 6 |
7 import 'package:analyzer/src/generated/constant.dart'; | 7 import 'package:analyzer/src/generated/constant.dart'; |
8 import 'package:analyzer/src/generated/resolver.dart'; | 8 import 'package:analyzer/src/generated/resolver.dart'; |
9 import 'package:analyzer/src/generated/testing/test_type_provider.dart'; | 9 import 'package:analyzer/src/generated/testing/test_type_provider.dart'; |
10 import 'package:test/test.dart'; | 10 import 'package:test/test.dart'; |
11 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 11 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
12 | 12 |
13 import '../../../generated/test_support.dart'; | 13 import '../../../generated/test_support.dart'; |
14 import '../../../utils.dart'; | |
15 | 14 |
16 main() { | 15 main() { |
17 initializeTestEnvironment(); | |
18 defineReflectiveSuite(() { | 16 defineReflectiveSuite(() { |
19 defineReflectiveTests(DartObjectImplTest); | 17 defineReflectiveTests(DartObjectImplTest); |
20 }); | 18 }); |
21 } | 19 } |
22 | 20 |
23 const Matcher isEvaluationException = const isInstanceOf<EvaluationException>(); | 21 const Matcher isEvaluationException = const isInstanceOf<EvaluationException>(); |
24 | 22 |
25 const int LONG_MAX_VALUE = 0x7fffffffffffffff; | 23 const int LONG_MAX_VALUE = 0x7fffffffffffffff; |
26 | 24 |
27 const Matcher throwsEvaluationException = const Throws(isEvaluationException); | 25 const Matcher throwsEvaluationException = const Throws(isEvaluationException); |
(...skipping 1957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1985 } else { | 1983 } else { |
1986 return new DartObjectImpl( | 1984 return new DartObjectImpl( |
1987 _typeProvider.stringType, new StringState(value)); | 1985 _typeProvider.stringType, new StringState(value)); |
1988 } | 1986 } |
1989 } | 1987 } |
1990 | 1988 |
1991 DartObjectImpl _symbolValue(String value) { | 1989 DartObjectImpl _symbolValue(String value) { |
1992 return new DartObjectImpl(_typeProvider.symbolType, new SymbolState(value)); | 1990 return new DartObjectImpl(_typeProvider.symbolType, new SymbolState(value)); |
1993 } | 1991 } |
1994 } | 1992 } |
OLD | NEW |