| 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 | 4 |
| 5 library test.runner.reporter.json; | |
| 6 | |
| 7 import 'dart:async'; | 5 import 'dart:async'; |
| 8 import 'dart:convert'; | 6 import 'dart:convert'; |
| 9 | 7 |
| 10 import '../../backend/group.dart'; | 8 import '../../backend/group.dart'; |
| 11 import '../../backend/live_test.dart'; | 9 import '../../backend/live_test.dart'; |
| 12 import '../../backend/metadata.dart'; | 10 import '../../backend/metadata.dart'; |
| 13 import '../../frontend/expect.dart'; | 11 import '../../frontend/expect.dart'; |
| 14 import '../../utils.dart'; | 12 import '../../utils.dart'; |
| 15 import '../engine.dart'; | 13 import '../engine.dart'; |
| 16 import '../load_suite.dart'; | 14 import '../load_suite.dart'; |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 _emit("done", {"success": success}); | 199 _emit("done", {"success": success}); |
| 202 } | 200 } |
| 203 | 201 |
| 204 /// Emits an event with the given type and attributes. | 202 /// Emits an event with the given type and attributes. |
| 205 void _emit(String type, Map attributes) { | 203 void _emit(String type, Map attributes) { |
| 206 attributes["type"] = type; | 204 attributes["type"] = type; |
| 207 attributes["time"] = _stopwatch.elapsed.inMilliseconds; | 205 attributes["time"] = _stopwatch.elapsed.inMilliseconds; |
| 208 print(JSON.encode(attributes)); | 206 print(JSON.encode(attributes)); |
| 209 } | 207 } |
| 210 } | 208 } |
| OLD | NEW |