OLD | NEW |
1 #library('IndexedDB1Test'); | 1 #library('IndexedDB1Test'); |
2 #import('../../pkg/unittest/unittest.dart'); | 2 #import('../../pkg/unittest/unittest.dart'); |
3 #import('../../pkg/unittest/html_config.dart'); | 3 #import('../../pkg/unittest/html_config.dart'); |
4 #import('dart:html'); | 4 #import('dart:html'); |
5 | 5 |
6 final String DB_NAME = 'Test'; | 6 const String DB_NAME = 'Test'; |
7 final String STORE_NAME = 'TEST'; | 7 const String STORE_NAME = 'TEST'; |
8 final String VERSION = '1'; | 8 const 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]) => () { |
14 var db; | 14 var db; |
15 | 15 |
16 fail(e) { | 16 fail(e) { |
17 guardAsync(() { | 17 guardAsync(() { |
18 Expect.fail('IndexedDB failure'); | 18 Expect.fail('IndexedDB failure'); |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 test('test4', | 140 test('test4', |
141 testReadWriteTyped(123, const [2, 3, 4], Expect.listEquals)); | 141 testReadWriteTyped(123, const [2, 3, 4], Expect.listEquals)); |
142 } | 142 } |
143 | 143 |
144 main() { | 144 main() { |
145 useHtmlConfiguration(); | 145 useHtmlConfiguration(); |
146 | 146 |
147 tests_dynamic(); | 147 tests_dynamic(); |
148 tests_typed(); | 148 tests_typed(); |
149 } | 149 } |
OLD | NEW |