| 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 unittest.runner.reporter.compact; | 5 library test.runner.reporter.compact; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:io'; | 8 import 'dart:io'; |
| 9 | 9 |
| 10 import '../../backend/live_test.dart'; | 10 import '../../backend/live_test.dart'; |
| 11 import '../../backend/state.dart'; | 11 import '../../backend/state.dart'; |
| 12 import '../../backend/suite.dart'; | 12 import '../../backend/suite.dart'; |
| 13 import '../../utils.dart'; | 13 import '../../utils.dart'; |
| 14 import '../engine.dart'; | 14 import '../engine.dart'; |
| 15 | 15 |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 name = "${liveTest.suite.path}: $name"; | 213 name = "${liveTest.suite.path}: $name"; |
| 214 } | 214 } |
| 215 | 215 |
| 216 if (_multiplePlatforms && liveTest.suite.platform != null) { | 216 if (_multiplePlatforms && liveTest.suite.platform != null) { |
| 217 name = "[${liveTest.suite.platform}] $name"; | 217 name = "[${liveTest.suite.platform}] $name"; |
| 218 } | 218 } |
| 219 | 219 |
| 220 return name; | 220 return name; |
| 221 } | 221 } |
| 222 } | 222 } |
| OLD | NEW |