| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override | 4 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override |
| 5 | 5 |
| 6 import 'dart:async'; | |
| 7 | |
| 8 import 'package:observatory/service_io.dart'; | 6 import 'package:observatory/service_io.dart'; |
| 9 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 10 | 8 |
| 11 import 'test_helper.dart'; | 9 import 'test_helper.dart'; |
| 12 | 10 |
| 13 var tests = [ | 11 var tests = [ |
| 14 (VM vm) async { | 12 (VM vm) async { |
| 15 var params = { | 13 var params = { |
| 16 'isolateId': vm.isolates.first.id, | 14 'isolateId': vm.isolates.first.id, |
| 17 }; | 15 }; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 29 expect(result['libraries'][0]['type'], equals('@Library')); | 27 expect(result['libraries'][0]['type'], equals('@Library')); |
| 30 expect(result['breakpoints'].length, isZero); | 28 expect(result['breakpoints'].length, isZero); |
| 31 expect(result['features'].length, isPositive); | 29 expect(result['features'].length, isPositive); |
| 32 expect(result['features'][0], new isInstanceOf<String>()); | 30 expect(result['features'][0], new isInstanceOf<String>()); |
| 33 expect(result['heaps']['new']['type'], equals('HeapSpace')); | 31 expect(result['heaps']['new']['type'], equals('HeapSpace')); |
| 34 expect(result['heaps']['old']['type'], equals('HeapSpace')); | 32 expect(result['heaps']['old']['type'], equals('HeapSpace')); |
| 35 }, | 33 }, |
| 36 ]; | 34 ]; |
| 37 | 35 |
| 38 main(args) async => runVMTests(args, tests); | 36 main(args) async => runVMTests(args, tests); |
| OLD | NEW |