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

Side by Side Diff: tests/dom/indexeddb_2_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, 7 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_1_test.dart ('k') | tests/dom/indexeddb_3_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('IndexedDB1Test'); 1 #library('IndexedDB1Test');
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 #import('utils.dart'); 6 #import('utils.dart');
7 7
8 // Write and re-read Maps: simple Maps; Maps with DAGs; Maps with cycles. 8 // Write and re-read Maps: simple Maps; Maps with DAGs; Maps with cycles.
9 9
10 final String DB_NAME = 'Test'; 10 final String DB_NAME = 'Test';
11 final String STORE_NAME = 'TEST'; 11 final String STORE_NAME = 'TEST';
12 final String VERSION = '1'; 12 final String VERSION = '1';
13 13
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 asyncTest('test_DAG', 1, testReadWrite(123, obj2, verifyGraph)); 83 asyncTest('test_DAG', 1, testReadWrite(123, obj2, verifyGraph));
84 asyncTest('test_cycle', 1, testReadWrite(123, obj3, verifyGraph)); 84 asyncTest('test_cycle', 1, testReadWrite(123, obj3, verifyGraph));
85 asyncTest('test_simple_splay', 1, testReadWrite(123, obj4, verifyGraph)); 85 asyncTest('test_simple_splay', 1, testReadWrite(123, obj4, verifyGraph));
86 } 86 }
87 87
88 main() { 88 main() {
89 useDomConfiguration(); 89 useDomConfiguration();
90 90
91 tests_dynamic(); 91 tests_dynamic();
92 } 92 }
OLDNEW
« no previous file with comments | « tests/dom/indexeddb_1_test.dart ('k') | tests/dom/indexeddb_3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698