blob: 7982bce17826470eae199ffccfa180e51792bc20 [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 Creates a map with the default implementation.
* @description Checks that an empty hash map is created
* @author msyabro
* @reviewer pagolubev
*/
import "../../../Utils/expect.dart";
import "dart:collection";
main() {
HashMap map = new HashMap();
Expect.isTrue(map is HashMap);
Expect.isTrue(map.isEmpty);
}