dart-sdk/tests/corelib/list_index_of_test.dart
Riley Porter 4d91dc7a47 [tests] Removing List constructor usage in corelib tests.
Replacing usage of deprecated `new List()` and `new List(x)` in tests
with `List.filled` or `[]` where applicable.

Change-Id: Ie52a1869dfa25e141a8486c02c2d7668e9303ec9
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/141022
Reviewed-by: Riley Porter <rileyporter@google.com>
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Riley Porter <rileyporter@google.com>
2020-03-30 19:58:08 +00:00

36 lines
946 B
Dart

// Copyright (c) 2011, 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";
main() {
test(new List<int?>.filled(5, null));
var l = <int?>[];
l.length = 5;
test(l);
}
void test(List<int?> list) {
list[0] = 1;
list[1] = 2;
list[2] = 3;
list[3] = 4;
list[4] = 1;
Expect.equals(3, list.indexOf(4, 0));
Expect.equals(0, list.indexOf(1, 0));
Expect.equals(4, list.lastIndexOf(1, list.length - 1));
Expect.equals(4, list.indexOf(1, 1));
Expect.equals(-1, list.lastIndexOf(4, 2));
Expect.equals(3, list.indexOf(4, 2));
Expect.equals(3, list.indexOf(4, -5));
Expect.equals(-1, list.indexOf(4, 50));
Expect.equals(-1, list.lastIndexOf(4, 2));
Expect.equals(-1, list.lastIndexOf(4, -5));
Expect.equals(3, list.lastIndexOf(4, 50));
}