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

Side by Side Diff: tests/dom/indexeddb_3_test.dart

Issue 10191033: test renaming overhaul: step 4 client tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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/dom/indexeddb_2_test.dart ('k') | tests/dom/indexeddb_4_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('IndexedDB3Test'); 1 #library('IndexedDB3Test');
2 #import('../../../../lib/unittest/unittest.dart'); 2 #import('../../lib/unittest/unittest.dart');
3 #import('../../../../lib/unittest/dom_config.dart'); 3 #import('../../lib/unittest/dom_config.dart');
4 #import('dart:dom'); 4 #import('dart:dom');
5 #import('dart:coreimpl'); 5 #import('dart:coreimpl');
6 6
7 // Read with cursor. 7 // Read with cursor.
8 8
9 final String DB_NAME = 'Test'; 9 final String DB_NAME = 'Test';
10 final String STORE_NAME = 'TEST'; 10 final String STORE_NAME = 'TEST';
11 final String VERSION = '1'; 11 final String VERSION = '1';
12 12
13 class Test { 13 class Test {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 } 110 }
111 111
112 main() { 112 main() {
113 useDomConfiguration(); 113 useDomConfiguration();
114 114
115 var test = new Test(); 115 var test = new Test();
116 asyncTest('prepare', 1, test.start); 116 asyncTest('prepare', 1, test.start);
117 asyncTest('readAll1', 1, test.readAllViaCursor); 117 asyncTest('readAll1', 1, test.readAllViaCursor);
118 asyncTest('readAll2', 1, test.readAllReversedViaCursor); 118 asyncTest('readAll2', 1, test.readAllReversedViaCursor);
119 } 119 }
OLDNEW
« no previous file with comments | « tests/dom/indexeddb_2_test.dart ('k') | tests/dom/indexeddb_4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698