11#include <source_location>
24void after_all(
callback body, std::source_location location = std::source_location::current());
Defines the callback type used by the test framework.
Registered setup or teardown hook.
Definition hook.hpp:25
Defines registered test hooks.
Unit test framework functions and types.
Definition test.hpp:15
void after_all(callback body, std::source_location location=std::source_location::current())
Registers a hook that runs once after all tests in the current suite have finished.
std::move_only_function< void()> callback
Callable block used by tests, suites, and hooks.
Definition callback.hpp:20