| 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 #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'; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 asyncTest('test_DAG', 1, testReadWrite(123, obj2, verifyGraph)); | 82 asyncTest('test_DAG', 1, testReadWrite(123, obj2, verifyGraph)); |
| 83 asyncTest('test_cycle', 1, testReadWrite(123, obj3, verifyGraph)); | 83 asyncTest('test_cycle', 1, testReadWrite(123, obj3, verifyGraph)); |
| 84 asyncTest('test_simple_splay', 1, testReadWrite(123, obj4, verifyGraph)); | 84 asyncTest('test_simple_splay', 1, testReadWrite(123, obj4, verifyGraph)); |
| 85 } | 85 } |
| 86 | 86 |
| 87 main() { | 87 main() { |
| 88 useHtmlConfiguration(); | 88 useHtmlConfiguration(); |
| 89 | 89 |
| 90 tests_dynamic(); | 90 tests_dynamic(); |
| 91 } | 91 } |
| OLD | NEW |