Chromium Code Reviews

Side by Side Diff: lib/src/runner/browser/iframe_test.dart

Issue 1053443002: Rename the package to "test". (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Fix a test. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
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.browser.iframe_test; 5 library test.runner.browser.iframe_test;
6 6
7 import '../../backend/live_test.dart'; 7 import '../../backend/live_test.dart';
8 import '../../backend/live_test_controller.dart'; 8 import '../../backend/live_test_controller.dart';
9 import '../../backend/metadata.dart'; 9 import '../../backend/metadata.dart';
10 import '../../backend/state.dart'; 10 import '../../backend/state.dart';
11 import '../../backend/suite.dart'; 11 import '../../backend/suite.dart';
12 import '../../backend/test.dart'; 12 import '../../backend/test.dart';
13 import '../../util/multi_channel.dart'; 13 import '../../util/multi_channel.dart';
14 import '../../util/remote_exception.dart'; 14 import '../../util/remote_exception.dart';
15 15
(...skipping 31 matching lines...)
47 controller.print(message['line']); 47 controller.print(message['line']);
48 } else { 48 } else {
49 assert(message['type'] == 'complete'); 49 assert(message['type'] == 'complete');
50 controller.completer.complete(); 50 controller.completer.complete();
51 } 51 }
52 }); 52 });
53 }); 53 });
54 return controller.liveTest; 54 return controller.liveTest;
55 } 55 }
56 } 56 }
OLDNEW

Powered by Google App Engine