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

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

Issue 226903002: tests/html: removed usage of deprecated unittest features (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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/url_test.dart ('k') | tests/html/xhr_cross_origin_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 WebDBTest; 1 library WebDBTest;
2 import 'dart:async'; 2 import 'dart:async';
3 import 'dart:html'; 3 import 'dart:html';
4 import 'dart:web_sql'; 4 import 'dart:web_sql';
5 import '../../pkg/unittest/lib/unittest.dart'; 5 import '../../pkg/unittest/lib/unittest.dart';
6 import '../../pkg/unittest/lib/html_individual_config.dart'; 6 import '../../pkg/unittest/lib/html_individual_config.dart';
7 7
8 void fail(message) {
9 guardAsync(() {
10 expect(false, isTrue, reason: message);
11 });
12 }
13
14 Future<SqlTransaction> transaction(SqlDatabase db) { 8 Future<SqlTransaction> transaction(SqlDatabase db) {
15 final completer = new Completer<SqlTransaction>.sync(); 9 final completer = new Completer<SqlTransaction>.sync();
16 10
17 db.transaction((SqlTransaction transaction) { 11 db.transaction((SqlTransaction transaction) {
18 completer.complete(transaction); 12 completer.complete(transaction);
19 }, (SqlError error) { 13 }, (SqlError error) {
20 completer.completeError(error); 14 completer.completeError(error);
21 }); 15 });
22 16
23 return completer.future; 17 return completer.future;
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 var row = resultSet.rows.item(0); 132 var row = resultSet.rows.item(0);
139 expect(row.containsKey(columnName), isTrue); 133 expect(row.containsKey(columnName), isTrue);
140 expect(row[columnName], 'Some text data'); 134 expect(row[columnName], 'Some text data');
141 expect(resultSet.rows[0], row); 135 expect(resultSet.rows[0], row);
142 }).then((_) { 136 }).then((_) {
143 return dropTable(tx, tableName); 137 return dropTable(tx, tableName);
144 }); 138 });
145 }); 139 });
146 }); 140 });
147 } 141 }
OLDNEW
« no previous file with comments | « tests/html/url_test.dart ('k') | tests/html/xhr_cross_origin_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698