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

Side by Side Diff: tests/corelib/list_index_of2_test.dart

Issue 2994543002: Migrated test block 13 to Dart 2.0. (Closed)
Patch Set: Address Bob's nits 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 unified diff | Download patch
« no previous file with comments | « tests/corelib/list_growable_test.dart ('k') | tests/corelib/list_index_of_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
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 import "package:expect/expect.dart";
6
7 class A {
8 const A();
9 }
10
11 class B extends A {
12 const B();
13 }
14
15 void test(List<B> list) {
16 // Test that the list accepts a different type for indexOf.
17 // List<B>.indexOf(A)
18 Expect.equals(-1, list.indexOf(const A()));
19 Expect.equals(-1, list.lastIndexOf(const A()));
20 }
21
22 main() {
23 var list = new List<B>(1);
24 list[0] = const B();
25 test(list);
26 var list2 = new List<B>();
27 list2.add(const B());
28 test(list2);
29 test(<B>[const B()]);
30 test(const <B>[]);
31 test(<B>[const B()].toList());
32 }
OLDNEW
« no previous file with comments | « tests/corelib/list_growable_test.dart ('k') | tests/corelib/list_index_of_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698