OLD | NEW |
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 | 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, |
11 [dbName = DB_NAME, | 11 [dbName = DB_NAME, |
12 storeName = STORE_NAME, | 12 storeName = STORE_NAME, |
13 version = VERSION]) => () { | 13 version = VERSION]) => () { |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 asyncTest('test4', 1, | 130 asyncTest('test4', 1, |
131 testReadWriteTyped(123, const [2, 3, 4], Expect.listEquals)); | 131 testReadWriteTyped(123, const [2, 3, 4], Expect.listEquals)); |
132 } | 132 } |
133 | 133 |
134 main() { | 134 main() { |
135 useDomConfiguration(); | 135 useDomConfiguration(); |
136 | 136 |
137 tests_dynamic(); | 137 tests_dynamic(); |
138 tests_typed(); | 138 tests_typed(); |
139 } | 139 } |
OLD | NEW |