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

Unified Diff: tests/html/indexeddb_4_test.dart

Issue 12388094: Removing futureTest test method (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/html/indexeddb_3_test.dart ('k') | tests/html/indexeddb_5_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/indexeddb_4_test.dart
diff --git a/tests/html/indexeddb_4_test.dart b/tests/html/indexeddb_4_test.dart
index e33173438b8cabe556d21b84c151b7a54351acbf..abf848b1bb4fbd8a55e521f57d8156b6ca2a7f70 100644
--- a/tests/html/indexeddb_4_test.dart
+++ b/tests/html/indexeddb_4_test.dart
@@ -82,40 +82,40 @@ main() {
// Support is tested in indexeddb_1_test
if (IdbFactory.supported) {
var db;
- futureTest('prepare', () {
+ test('prepare', () {
return setupDb().then((result) {
db = result;
});
});
- futureTest('only1', () => testRange(db, new KeyRange.only(55), 55, 55));
+ test('only1', () => testRange(db, new KeyRange.only(55), 55, 55));
- futureTest('only1', () => testRange(db, new KeyRange.only(55), 55, 55));
- futureTest('only2', () => testRange(db, new KeyRange.only(100), null, null));
- futureTest('only3', () => testRange(db, new KeyRange.only(-1), null, null));
+ test('only1', () => testRange(db, new KeyRange.only(55), 55, 55));
+ test('only2', () => testRange(db, new KeyRange.only(100), null, null));
+ test('only3', () => testRange(db, new KeyRange.only(-1), null, null));
- futureTest('lower1', () =>
+ test('lower1', () =>
testRange(db, new KeyRange.lowerBound(40), 40, 99));
// OPTIONALS lower2() => testRange(db, new KeyRange.lowerBound(40, open: true), 41, 99);
- futureTest('lower2', () =>
+ test('lower2', () =>
testRange(db, new KeyRange.lowerBound(40, true), 41, 99));
// OPTIONALS lower3() => testRange(db, new KeyRange.lowerBound(40, open: false), 40, 99);
- futureTest('lower3', () =>
+ test('lower3', () =>
testRange(db, new KeyRange.lowerBound(40, false), 40, 99));
- futureTest('upper1', () =>
+ test('upper1', () =>
testRange(db, new KeyRange.upperBound(40), 0, 40));
// OPTIONALS upper2() => testRange(db, new KeyRange.upperBound(40, open: true), 0, 39);
- futureTest('upper2', () =>
+ test('upper2', () =>
testRange(db, new KeyRange.upperBound(40, true), 0, 39));
// upper3() => testRange(db, new KeyRange.upperBound(40, open: false), 0, 40);
- futureTest('upper3', () =>
+ test('upper3', () =>
testRange(db, new KeyRange.upperBound(40, false), 0, 40));
- futureTest('bound1', () =>
+ test('bound1', () =>
testRange(db, new KeyRange.bound(20, 30), 20, 30));
- futureTest('bound2', () =>
+ test('bound2', () =>
testRange(db, new KeyRange.bound(-100, 200), 0, 99));
bound3() =>
« no previous file with comments | « tests/html/indexeddb_3_test.dart ('k') | tests/html/indexeddb_5_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698