kaycxx-test
C++ unit test framework
Loading...
Searching...
No Matches
callback.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 <functional>
12
13namespace kaycxx::test {
14
20using callback = std::move_only_function<void()>;
21
22} // namespace kaycxx::test
Unit test framework functions and types.
Definition test.hpp:15
std::move_only_function< void()> callback
Callable block used by tests, suites, and hooks.
Definition callback.hpp:20