blob: af4a3ae0dda2ec8d350b5174b1d2ce1b68eda644 [file] [log] [blame]
// Copyright (c) 2021, 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.
import 'package:test/test.dart';
Matcher throwsExceptionWithToString(Object matcher) => throwsA(
isA<Exception>().having((p0) => p0.toString(), 'toString', matcher),
);