kaycxx-test
C++ unit test framework
Loading...
Searching...
No Matches
run_tests.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
11#include <iosfwd>
12
14
15namespace kaycxx::test {
16
23
35int run_tests(int argc, char* argv[]);
36
43int run_tests(std::ostream& output);
44
52int run_tests(test_registry& registry, std::ostream& output);
53
54} // namespace kaycxx::test
Owns a set of test suites and the registration stack used while suite bodies execute.
Definition test_registry.hpp:37
Unit test framework functions and types.
Definition test.hpp:15
int run_tests()
Runs the global test registry and writes the report to standard output.
Defines isolated test registries.