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

Side by Side Diff: tests/html/cache_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/blob_constructor_test.dart ('k') | tests/html/callbacks_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('CacheTest'); 1 library CacheTest;
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 main() { 6 main() {
7 useHtmlConfiguration(); 7 useHtmlConfiguration();
8 test('ApplicationCache', () { 8 test('ApplicationCache', () {
9 DOMApplicationCache appCache = window.applicationCache; 9 DOMApplicationCache appCache = window.applicationCache;
10 expect(cacheStatusToString(appCache.status), equals("UNCACHED")); 10 expect(cacheStatusToString(appCache.status), equals("UNCACHED"));
11 }); 11 });
12 } 12 }
13 13
14 String cacheStatusToString(int status) { 14 String cacheStatusToString(int status) {
15 switch (status) { 15 switch (status) {
16 case DOMApplicationCache.UNCACHED: // UNCACHED == 0 16 case DOMApplicationCache.UNCACHED: // UNCACHED == 0
17 return 'UNCACHED'; 17 return 'UNCACHED';
18 case DOMApplicationCache.IDLE: // IDLE == 1 18 case DOMApplicationCache.IDLE: // IDLE == 1
19 return 'IDLE'; 19 return 'IDLE';
20 case DOMApplicationCache.CHECKING: // CHECKING == 2 20 case DOMApplicationCache.CHECKING: // CHECKING == 2
21 return 'CHECKING'; 21 return 'CHECKING';
22 case DOMApplicationCache.DOWNLOADING: // DOWNLOADING == 3 22 case DOMApplicationCache.DOWNLOADING: // DOWNLOADING == 3
23 return 'DOWNLOADING'; 23 return 'DOWNLOADING';
24 case DOMApplicationCache.UPDATEREADY: // UPDATEREADY == 4 24 case DOMApplicationCache.UPDATEREADY: // UPDATEREADY == 4
25 return 'UPDATEREADY'; 25 return 'UPDATEREADY';
26 case DOMApplicationCache.OBSOLETE: // OBSOLETE == 5 26 case DOMApplicationCache.OBSOLETE: // OBSOLETE == 5
27 return 'OBSOLETE'; 27 return 'OBSOLETE';
28 default: 28 default:
29 return 'UNKNOWN CACHE STATUS'; 29 return 'UNKNOWN CACHE STATUS';
30 }; 30 };
31 } 31 }
OLDNEW
« no previous file with comments | « tests/html/blob_constructor_test.dart ('k') | tests/html/callbacks_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698