blob: 5bb7e39cdb5e6f28673057c2aca37fb0dd828715 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore_for_file: implementation_imports
import 'package:fuchsia_modular/src/module/module_state_exception.dart';
import 'package:test/test.dart';
/// A matcher which matches on the ModuleStateException type.
const Matcher isModuleStateException =
const TypeMatcher<ModuleStateException>();
/// A matcher which matches on the module ModuleStateException type.
Matcher throwsModuleStateException = throwsA(isModuleStateException);