blob: 4dc7a9844fb43dcc54b3de14d142d0ec6c84a197 [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 Map<K, V> abstract class
* @description Checks that all members of [Map] are implemented.
* @author kaigorodov
*/
import "compKeysTests.lib.dart" as compKeysTests;
import "nonCompKeysTests.lib.dart" as nonCompKeysTests;
Map create([Map content]) {
if (content==null) {
return new Map();
} else {
return new Map.from(content);
}
}
main() {
compKeysTests.test(create);
nonCompKeysTests.test(create);
}