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

Side by Side Diff: tests/html/fileapi_test.dart

Issue 10836241: Move unittest from lib to pkg. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 months 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/hidden_dom_1_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('../../lib/unittest/unittest.dart'); 2 #import('../../pkg/unittest/unittest.dart');
3 #import('../../lib/unittest/html_config.dart'); 3 #import('../../pkg/unittest/html_config.dart');
4 #import('dart:html'); 4 #import('dart:html');
5 5
6 main() { 6 main() {
7 useHtmlConfiguration(); 7 useHtmlConfiguration();
8 window.webkitRequestFileSystem(Window.TEMPORARY, 100, (fs) { 8 window.webkitRequestFileSystem(Window.TEMPORARY, 100, (fs) {
9 // FIXME: add types to callback arguments after migration to wrapperless dar t:html. 9 // FIXME: add types to callback arguments after migration to wrapperless dar t:html.
10 10
11 test('getDirectory', () { 11 test('getDirectory', () {
12 expect(() => fs.root.getDirectory('directory1', {'x': true}, (e) {}), 12 expect(() => fs.root.getDirectory('directory1', {'x': true}, (e) {}),
13 throws); 13 throws);
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 flags: {'create': true}, 51 flags: {'create': true},
52 successCallback: expectAsync1((e) { 52 successCallback: expectAsync1((e) {
53 expect(e.name, equals('file3')); 53 expect(e.name, equals('file3'));
54 }), 54 }),
55 errorCallback: expectAsync1((e) { 55 errorCallback: expectAsync1((e) {
56 expect(false, 'Got file error: ${e.code}'); 56 expect(false, 'Got file error: ${e.code}');
57 }, count:0)); 57 }, count:0));
58 }); 58 });
59 }); 59 });
60 } 60 }
OLDNEW
« no previous file with comments | « tests/html/exceptions_test.dart ('k') | tests/html/hidden_dom_1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698