blob: 22b7607de4b9a6029472c3e472b64d42d275a5e0 [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 String name
/// read-only
/// Name of the invalid argument, if available.
/// @description Checks that name property returns invalid argument name if
/// available
/// @author sgrekhov@unipro.ru
import "../../../Utils/expect.dart";
test(ArgumentError create([value, String? name, message])) {
var name = "some name";
ArgumentError err = create(null, name);
Expect.equals(name, err.name);
}