OLD | NEW |
1 #library('IndexedDB4Test'); | 1 #library('IndexedDB4Test'); |
2 #import('../../pkg/unittest/unittest.dart'); | 2 #import('../../pkg/unittest/lib/unittest.dart'); |
3 #import('../../pkg/unittest/html_config.dart'); | 3 #import('../../pkg/unittest/lib/html_config.dart'); |
4 #import('dart:html'); | 4 #import('dart:html'); |
5 | 5 |
6 // Test for IDBKeyRange and IDBCursor. | 6 // Test for IDBKeyRange and IDBCursor. |
7 | 7 |
8 const String DB_NAME = 'Test'; | 8 const String DB_NAME = 'Test'; |
9 const String STORE_NAME = 'TEST'; | 9 const String STORE_NAME = 'TEST'; |
10 const String VERSION = '1'; | 10 const String VERSION = '1'; |
11 | 11 |
12 class Test { | 12 class Test { |
13 var db; | 13 var db; |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 test('upper1', test_.upper1); | 139 test('upper1', test_.upper1); |
140 test('upper2', test_.upper2); | 140 test('upper2', test_.upper2); |
141 test('upper3', test_.upper3); | 141 test('upper3', test_.upper3); |
142 | 142 |
143 test('bound1', test_.bound1); | 143 test('bound1', test_.bound1); |
144 test('bound2', test_.bound2); | 144 test('bound2', test_.bound2); |
145 test('bound3', test_.bound3); | 145 test('bound3', test_.bound3); |
146 test('bound4', test_.bound4); | 146 test('bound4', test_.bound4); |
147 test('bound5', test_.bound5); | 147 test('bound5', test_.bound5); |
148 } | 148 } |
OLD | NEW |