kaycxx-test
C++ unit test framework
Loading...
Searching...
No Matches
run_options.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2026 Klaus Reimer <k@ailis.de>
2// SPDX-License-Identifier: MIT
3
4#pragma once
5
11namespace kaycxx::test {
12
16 bool break_on_exception = false;
17};
18
19} // namespace kaycxx::test
Unit test framework functions and types.
Definition test.hpp:15
Configures the execution of registered tests.
Definition run_options.hpp:14
bool break_on_exception
Allow unexpected exceptions to escape the test framework so a debugger can stop at the failure.
Definition run_options.hpp:16