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

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

Issue 11301046: Restructure pkg/unittest and pkg/webdriver to follow the pub conventions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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/htmloptionscollection_test.dart ('k') | tests/html/indexeddb_2_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/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 const String DB_NAME = 'Test'; 6 const String DB_NAME = 'Test';
7 const String STORE_NAME = 'TEST'; 7 const String STORE_NAME = 'TEST';
8 const int VERSION = 1; 8 const int VERSION = 1;
9 9
10 testReadWrite(key, value, matcher, 10 testReadWrite(key, value, matcher,
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;
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 test('test3', testReadWriteTyped(123, [1, 2, 3], equals([1, 2, 3]))); 172 test('test3', testReadWriteTyped(123, [1, 2, 3], equals([1, 2, 3])));
173 test('test4', testReadWriteTyped(123, [2, 3, 4], equals([2, 3, 4]))); 173 test('test4', testReadWriteTyped(123, [2, 3, 4], equals([2, 3, 4])));
174 } 174 }
175 175
176 main() { 176 main() {
177 useHtmlConfiguration(); 177 useHtmlConfiguration();
178 178
179 tests_dynamic(); 179 tests_dynamic();
180 tests_typed(); 180 tests_typed();
181 } 181 }
OLDNEW
« no previous file with comments | « tests/html/htmloptionscollection_test.dart ('k') | tests/html/indexeddb_2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698