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

Unified Diff: tests/corelib_strong/iterable_contains2_test.dart

Issue 2997533002: Migrate test block 10 to Dart 2.0. (Closed)
Patch Set: Fix merge error Created 3 years, 4 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/corelib_strong/iterable_contains2_test.dart
diff --git a/tests/corelib_strong/iterable_contains2_test.dart b/tests/corelib_strong/iterable_contains2_test.dart
deleted file mode 100644
index d4714c72bef8f0aba2ded2bca7beeda11d466642..0000000000000000000000000000000000000000
--- a/tests/corelib_strong/iterable_contains2_test.dart
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2012, 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.
-
-import "package:expect/expect.dart";
-
-// Tests for the contains methods on lists.
-
-class A {
- const A();
-}
-
-class B extends A {
- const B();
-}
-
-main() {
- var list = <B>[new B()];
- var set = new Set<B>();
- set.add(new B());
- var iterable1 = list.map((x) => x);
- var iterable2 = list.take(1);
- var list2 = const <B>[const B()];
- var iterable3 = list2.map((x) => x);
- var iterable4 = list2.take(1);
- var iterables = [
- list,
- set,
- iterable1,
- iterable2,
- list2,
- iterable3,
- iterable4
- ];
- for (var iterable in iterables) {
- Expect.isFalse(iterable.contains(new A()));
- }
-}
« no previous file with comments | « tests/corelib_strong/is_operator_basic_types_test.dart ('k') | tests/corelib_strong/iterable_contains_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698