blob: e79b31df4e7591745a802d4b521c9f7e3f86d1f8 [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.
*/
/**
* @assertion HashMap<K, V> abstract class
* Implements Map<K, V>
* @description Checks that all members of [Map] are implemented.
* @author kaigorodov
*/
library allTests_A01_t01;
import "../../core/Map/compKeysTests.lib.dart" as compKeysTests;
import "../../core/Map/nonCompKeysTests.lib.dart" as nonCompKeysTests;
test(Map create([Map content])) {
compKeysTests.test(create);
nonCompKeysTests.test(create);
}