blob: 1b340d3f308a50ff21163911fc8df27edaf9ed84 [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 class ArgumentError
/// @description Checks all methods of ArgumentError
/// @author sgrekhov@unipro.ru
library allTests_A01_t01;
import "invalidValue_A01_t01.test.dart" as invalidValue_A01_t01;
import "message_A01_t01.test.dart" as message_A01_t01;
import "name_A01_t01.test.dart" as name_A01_t01;
test(ArgumentError create([value, String name, message])) {
invalidValue_A01_t01.test(create);
message_A01_t01.test(create);
name_A01_t01.test(create);
}