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

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

Issue 11301046: Restructure pkg/unittest and pkg/webdriver to follow the pub conventions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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
OLDNEW
1 #library('webdriver_test'); 1 library webdriver_test;
2 #import('../webdriver.dart'); 2 import '../webdriver.dart';
3 #import('../../../pkg/unittest/unittest.dart'); 3 import '../../../pkg/unittest/lib/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

Powered by Google App Engine
This is Rietveld 408576698