mimic++ v9.2.1
Loading...
Searching...
No Matches
NoMatchReport.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_NO_MATCH_REPORT_HPP
7#define MIMICPP_REPORTING_NO_MATCH_REPORT_HPP
8
9#pragma once
10
13
15{
21 {
22 public:
25
26 [[nodiscard]]
27 friend bool operator==(NoMatchReport const&, NoMatchReport const&) = default;
28 };
29}
30
31#endif
#define MIMICPP_DETAIL_MODULE_EXPORT
Definition Config.hpp:19
Contains the extracted info from a typed expectation.
Definition ExpectationReport.hpp:85
Contains the requirement-outcomes (where at least one is negative) and the related expectation-report...
Definition NoMatchReport.hpp:21
RequirementOutcomes requirementOutcomes
Definition NoMatchReport.hpp:24
friend bool operator==(NoMatchReport const &, NoMatchReport const &)=default
ExpectationReport expectationReport
Definition NoMatchReport.hpp:23
Contains the boolean outcomes of a match-test.
Definition ExpectationReport.hpp:102
Definition BasicReporter.hpp:27