Arene Base
Fundamental Utilities For Safety Critical C++
Loading...
Searching...
No Matches
property_summary.hpp
Go to the documentation of this file.
1#ifndef INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TESTING_PROPERTY_SUMMARY_HPP_
2#define INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TESTING_PROPERTY_SUMMARY_HPP_
3
4#include "arene/base/optional/optional.hpp"
5#include "arene/base/stdlib_choice/cstddef.hpp"
6#include "arene/base/stdlib_choice/cstdint.hpp"
7#include "arene/base/testing/property_error.hpp"
8
9namespace arene {
10namespace base {
11namespace testing {
12
13/// @brief result of a property run
14///
15/// Aggregates the statistics gathered during a property run along with
16/// the first counterexample encountered, if any.
24
25} // namespace testing
26} // namespace base
27} // namespace arene
28#endif // INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TESTING_PROPERTY_SUMMARY_HPP_
Definition customization.hpp:36
Definition array_exceptions_disabled.cpp:11
Copyright 2026, Toyota Motor Corporation.
Definition array_exceptions_disabled.cpp:10
result of a property run
Definition property_summary.hpp:17
std::size_t successes
Definition property_summary.hpp:18
optional< property_error > first_failure
Definition property_summary.hpp:22
std::uint64_t seed
Definition property_summary.hpp:21
std::size_t discards
Definition property_summary.hpp:19
bool failed
Definition property_summary.hpp:20