Arene Base
Fundamental Utilities For Safety Critical C++
Loading...
Searching...
No Matches
property_config.hpp
Go to the documentation of this file.
1#ifndef INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TESTING_PROPERTY_CONFIG_HPP_
2#define INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TESTING_PROPERTY_CONFIG_HPP_
3
4#include "arene/base/stdlib_choice/cstddef.hpp"
5#include "arene/base/stdlib_choice/cstdint.hpp"
6
7namespace arene {
8namespace base {
9namespace testing {
10
11/// @brief configuration for property run
12///
13/// Controls how many successful trials must be observed before a property
14/// is considered to hold, how many discarded trials are tolerated before
15/// giving up, and the seed used to initialize the property's PRNG.
21
22} // namespace testing
23} // namespace base
24} // namespace arene
25#endif // INCLUDE_GUARD_ARENE_BASE_ARENE_BASE_TESTING_PROPERTY_CONFIG_HPP_
Definition customization.hpp:36
Definition array_exceptions_disabled.cpp:11
Copyright 2026, Toyota Motor Corporation.
Definition array_exceptions_disabled.cpp:10
configuration for property run
Definition property_config.hpp:16
std::size_t max_discards
Definition property_config.hpp:18
std::size_t required_successes
Definition property_config.hpp:17
std::uint64_t seed
Definition property_config.hpp:19