blob: 5f90d820fc0dae68ea92f764c51c8d08560999ca [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.
// @dart = 2.9
/// @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);
}