Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(611)

Side by Side Diff: tests/html/indexeddb_2_test.dart

Issue 10871071: - Change "static final" to "static const" in the tests/ directory. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/html/indexeddb_1_test.dart ('k') | tests/html/indexeddb_3_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #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 const String DB_NAME = 'Test';
11 final String STORE_NAME = 'TEST'; 11 const String STORE_NAME = 'TEST';
12 final String VERSION = '1'; 12 const String VERSION = '1';
13 13
14 testReadWrite(key, value, check, 14 testReadWrite(key, value, check,
15 [dbName = DB_NAME, 15 [dbName = DB_NAME,
16 storeName = STORE_NAME, 16 storeName = STORE_NAME,
17 version = VERSION]) => () { 17 version = VERSION]) => () {
18 var db; 18 var db;
19 19
20 fail(e) { 20 fail(e) {
21 guardAsync(() { 21 guardAsync(() {
22 Expect.fail('IndexedDB failure'); 22 Expect.fail('IndexedDB failure');
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 go('test_simple', obj1); 112 go('test_simple', obj1);
113 go('test_DAG', obj2); 113 go('test_DAG', obj2);
114 go('test_cycle', obj3); 114 go('test_cycle', obj3);
115 go('test_simple_splay', obj4); 115 go('test_simple_splay', obj4);
116 go('const_array_1', const [const [1], const [2]]); 116 go('const_array_1', const [const [1], const [2]]);
117 go('const_array_dag', const [const [1], const [1]]); 117 go('const_array_dag', const [const [1], const [1]]);
118 go('array_deferred_copy', [1,2,3, obj3, obj3, 6]); 118 go('array_deferred_copy', [1,2,3, obj3, obj3, 6]);
119 go('array_deferred_copy_2', [1,2,3, [4, 5, obj3], [obj3, 6]]); 119 go('array_deferred_copy_2', [1,2,3, [4, 5, obj3], [obj3, 6]]);
120 go('cyclic_list', cyclic_list); 120 go('cyclic_list', cyclic_list);
121 } 121 }
OLDNEW
« no previous file with comments | « tests/html/indexeddb_1_test.dart ('k') | tests/html/indexeddb_3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698