| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |