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

Unified Diff: tests/lib/async/deferred/deferred_api_test.dart

Issue 221663005: Load deferred chunks in the right order. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
Index: tests/lib/async/deferred/deferred_api_test.dart
diff --git a/tests/lib/async/deferred/deferred_api_test.dart b/tests/lib/async/deferred/deferred_api_test.dart
deleted file mode 100644
index f138935434b82f9316e831e105627acc211624af..0000000000000000000000000000000000000000
--- a/tests/lib/async/deferred/deferred_api_test.dart
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// Test that that the basic API for deferred/lazy loading works. This
-// test deliberately does not test that the deferred elements throw a
-// NoSuchMethodError before the deferred library is loaded. This
-// makes it possible to pass this test without having implemented
-// deferred loading correctly.
-
-import "package:expect/expect.dart";
-import 'dart:async';
-
-@lazy
-import 'deferred_api_library.dart' as lib;
-
-const lazy = const DeferredLibrary('deferred_api_library');
-
-main() {
- print('unittest-suite-wait-for-done');
-
- int counter = 0;
- lazy.load().then((bool didLoad) {
- Expect.isTrue(didLoad);
- Expect.equals(1, ++counter);
- Expect.equals(42, lib.foo('b'));
- print('lazy was loaded');
- });
- Expect.equals(0, counter);
- lazy.load().then((bool didLoad) {
- Expect.isFalse(didLoad);
- Expect.equals(2, ++counter);
- Expect.equals(42, lib.foo('b'));
- print('lazy was loaded');
- print('unittest-suite-success');
- });
- Expect.equals(0, counter);
-}
« no previous file with comments | « tests/lib/async/deferred/deferred_api_library.dart ('k') | tests/lib/async/deferred/deferred_fail_to_load_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698