mimic++ v9.2.1
Loading...
Searching...
No Matches
Fwd.hpp
Go to the documentation of this file.
1// Copyright Dominic (DNKpp) Koepke 2024 - 2025.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at
4// https://www.boost.org/LICENSE_1_0.txt)
5
6#ifndef MIMICPP_REPORTING_FWD_HPP
7#define MIMICPP_REPORTING_FWD_HPP
8
9#pragma once
10
12
14{
15 class IReporter;
16 class DefaultReporter;
17
18 class TypeReport;
19 class TargetReport;
20 class CallReport;
22 class NoMatchReport;
24}
25
26#endif
#define MIMICPP_DETAIL_MODULE_EXPORT
Definition Config.hpp:19
Contains the extracted info from a typed call::Info.
Definition CallReport.hpp:43
The default reporter.
Definition DefaultReporter.hpp:71
Contains the extracted info from a typed expectation.
Definition ExpectationReport.hpp:85
The reporter interface.
Definition IReporter.hpp:51
Contains the requirement-outcomes (where at least one is negative) and the related expectation-report...
Definition NoMatchReport.hpp:21
Contains the boolean outcomes of a match-test.
Definition ExpectationReport.hpp:102
Contains the extracted mock info.
Definition TargetReport.hpp:22
Contains information about a specific (potentially cv-ref-qualified) type.
Definition TypeReport.hpp:25
Definition BasicReporter.hpp:27