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

Unified Diff: tests/html/indexeddb_1_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 | « no previous file | tests/html/indexeddb_2_test.dart » ('j') | tests/html/indexeddb_4_test.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/indexeddb_1_test.dart
diff --git a/tests/html/indexeddb_1_test.dart b/tests/html/indexeddb_1_test.dart
index 536253b496420bdc700b02a98939235c8beec19b..154c92783da7c40ece403383842ce148b2563db5 100644
--- a/tests/html/indexeddb_1_test.dart
+++ b/tests/html/indexeddb_1_test.dart
@@ -95,19 +95,19 @@ testReadWriteTyped(key, value, matcher,
};
tests_dynamic() {
- futureTest('test1', testReadWrite(123, 'Hoot!', equals('Hoot!')));
- futureTest('test2', testReadWrite(123, 12345, equals(12345)));
- futureTest('test3', testReadWrite(123, [1, 2, 3], equals([1, 2, 3])));
- futureTest('test4', testReadWrite(123, [2, 3, 4], equals([2, 3, 4])));
- futureTest('test4', testReadWrite(123, false, equals(false)));
+ test('test1', testReadWrite(123, 'Hoot!', equals('Hoot!')));
+ test('test2', testReadWrite(123, 12345, equals(12345)));
+ test('test3', testReadWrite(123, [1, 2, 3], equals([1, 2, 3])));
+ test('test4', testReadWrite(123, [2, 3, 4], equals([2, 3, 4])));
+ test('test4', testReadWrite(123, false, equals(false)));
}
tests_typed() {
- futureTest('test1', testReadWriteTyped(123, 'Hoot!', equals('Hoot!')));
- futureTest('test2', testReadWriteTyped(123, 12345, equals(12345)));
- futureTest('test3', testReadWriteTyped(123, [1, 2, 3], equals([1, 2, 3])));
- futureTest('test4', testReadWriteTyped(123, [2, 3, 4], equals([2, 3, 4])));
- futureTest('test4', testReadWriteTyped(123, false, equals(false)));
+ test('test1', testReadWriteTyped(123, 'Hoot!', equals('Hoot!')));
+ test('test2', testReadWriteTyped(123, 12345, equals(12345)));
+ test('test3', testReadWriteTyped(123, [1, 2, 3], equals([1, 2, 3])));
+ test('test4', testReadWriteTyped(123, [2, 3, 4], equals([2, 3, 4])));
+ test('test4', testReadWriteTyped(123, false, equals(false)));
}
main() {
@@ -134,7 +134,7 @@ main() {
// Don't bother with these tests if it's unsupported.
if (idb.IdbFactory.supported) {
- futureTest('upgrade', testUpgrade);
+ test('upgrade', testUpgrade);
tests_dynamic();
tests_typed();
}
« no previous file with comments | « no previous file | tests/html/indexeddb_2_test.dart » ('j') | tests/html/indexeddb_4_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698