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

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

Issue 10178014: Copy lib/dom tests that use dart:html to lib/html. (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
OLDNEW
1 #library('IndexedDB1Test'); 1 #library('IndexedDB1Test');
2 #import('../../lib/unittest/unittest.dart'); 2 #import('../../lib/unittest/unittest.dart');
3 #import('../../lib/unittest/html_config.dart'); 3 #import('../../lib/unittest/html_config.dart');
4 #import('dart:html'); 4 #import('dart:html');
5 5
6 final String DB_NAME = 'Test'; 6 final String DB_NAME = 'Test';
7 final String STORE_NAME = 'TEST'; 7 final String STORE_NAME = 'TEST';
8 final String VERSION = '1'; 8 final String VERSION = '1';
9 9
10 testReadWrite(key, value, check, 10 testReadWrite(key, value, check,
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 asyncTest('test4', 1, 128 asyncTest('test4', 1,
129 testReadWriteTyped(123, const [2, 3, 4], Expect.listEquals)); 129 testReadWriteTyped(123, const [2, 3, 4], Expect.listEquals));
130 } 130 }
131 131
132 main() { 132 main() {
133 useHtmlConfiguration(); 133 useHtmlConfiguration();
134 134
135 tests_dynamic(); 135 tests_dynamic();
136 tests_typed(); 136 tests_typed();
137 } 137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698