Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(389)

Side by Side Diff: pkg/webdriver/test/webdrivertest.dart

Issue 11575043: Convert the small packages in pkg to use "package:". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/logging/test/logging_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library webdriver_test; 1 library webdriver_test;
2 import '../webdriver.dart'; 2 import 'package:webdriver/webdriver.dart';
3 import '../../../pkg/unittest/lib/unittest.dart'; 3 import 'package:unittest/unittest.dart';
4 4
5 WebDriver web_driver; 5 WebDriver web_driver;
6 6
7 /** 7 /**
8 * These tests are not expected to be run as part of normal automated testing, 8 * These tests are not expected to be run as part of normal automated testing,
9 * as they are slow, many of them do not yet work due to WebDriver limitations, 9 * as they are slow, many of them do not yet work due to WebDriver limitations,
10 * and they have external dependencies. Nontheless it is useful to keep them 10 * and they have external dependencies. Nontheless it is useful to keep them
11 * here for manual testing. 11 * here for manual testing.
12 */ 12 */
13 main() { 13 main() {
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 //print(logs); 412 //print(logs);
413 return session.close(); 413 return session.close();
414 }).then((_) { 414 }).then((_) {
415 session = null; 415 session = null;
416 completionCallback(); 416 completionCallback();
417 }); 417 });
418 }); 418 });
419 }); 419 });
420 } 420 }
421 421
OLDNEW
« no previous file with comments | « pkg/logging/test/logging_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698