blob: 5c9af6d749e1585ad4a05fcce2ced100bf7a8151 [file] [log] [blame]
// 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.
// @dart = 2.9
/// @assertion ListMixin<E> abstract class
/// Implements List<E>
/// @description Checks that List-specific methods work as specified.
/// @author kaigorodov
library inherited_tests_listmixin;
import "../../core/List/allListTests.lib.dart" as all_list_tests;
test(List create([int length])) {
all_list_tests.test(create);
}