blob: 6c94da929ba1b2c821211d7d5e5581669273be6c [file] [log] [blame]
// Copyright (c) 2016, 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.
/// @assertion abstract class MapBase<K, V>
/// Base class for implementing a Map.
/// @description Checks that all members of [Map] are implemented.
/// @author sgrekhov@unipro.ru
library inherited_tests_mapbase;
import "../../core/Map/compKeysTests.lib.dart" as compKeysTests;
import "../../core/Map/nonCompKeysTests.lib.dart" as nonCompKeysTests;
import "../../core/Map/compKeysWarnTests.lib.dart" as compKeysWarnTests;
test(Map create([Map content])) {
compKeysTests.test(create);
nonCompKeysTests.test(create);
compKeysWarnTests.test(create);
}