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

Side by Side Diff: tests/html/fileapi_test.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
« no previous file with comments | « tests/html/exceptions_test.dart ('k') | tests/html/form_data_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('fileapi'); 1 library fileapi;
2 #import('../../pkg/unittest/unittest.dart'); 2 import '../../pkg/unittest/lib/unittest.dart';
3 #import('../../pkg/unittest/html_config.dart'); 3 import '../../pkg/unittest/lib/html_config.dart';
4 #import('dart:html'); 4 import 'dart:html';
5 5
6 void fail(message) { 6 void fail(message) {
7 guardAsync(() { 7 guardAsync(() {
8 expect(false, isTrue, reason: message); 8 expect(false, isTrue, reason: message);
9 }); 9 });
10 } 10 }
11 11
12 DOMFileSystem fs; 12 DOMFileSystem fs;
13 13
14 main() { 14 main() {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 successCallback: expectAsync1((FileEntry e) { 70 successCallback: expectAsync1((FileEntry e) {
71 expect(e.name, equals('file4')); 71 expect(e.name, equals('file4'));
72 expect(e.isFile, isTrue); 72 expect(e.isFile, isTrue);
73 }), 73 }),
74 errorCallback: (e) { 74 errorCallback: (e) {
75 fail('Got file error: ${e.code}'); 75 fail('Got file error: ${e.code}');
76 }); 76 });
77 }); 77 });
78 }); 78 });
79 } 79 }
OLDNEW
« no previous file with comments | « tests/html/exceptions_test.dart ('k') | tests/html/form_data_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698