blob: 7850499cdc8794b09ffb6776e5b6944edfe3d9b0 [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, using
* non-comparable keys.
* @author kaigorodov
*/
library nonCompKeysTests;
import "addAll_A02_t01.test.dart" as addAll_A02_t01;
import "containsKey_A01_t02.test.dart" as containsKey_A01_t02;
import "operator_subscript_A01_t02.test.dart" as operator_subscript_A01_t02;
import "operator_subscript_A01_t04.test.dart" as operator_subscript_A01_t04;
import "operator_subscripted_assignment_A01_t02.test.dart" as operator_subscripted_assignment_A01_t02;
import "remove_A01_t02.test.dart" as remove_A01_t02;
test(Map create([Map content])) {
addAll_A02_t01.test(create);
containsKey_A01_t02.test(create);
operator_subscript_A01_t02.test(create);
operator_subscript_A01_t04.test(create);
operator_subscripted_assignment_A01_t02.test(create);
remove_A01_t02.test(create);
}