Specs
Beautiful C++ Test Framework
Loading...
Searching...
No Matches
test_template.h
Go to the documentation of this file.
1#pragma once
2
4
5#include <functional>
6
7#include "../GlobalInterface.h"
8
10
11 inline void test_template(std::string_view templateName, std::function<void()> body) {
13 templateName, function_pointer(std::move(body))
14 );
15 }
16}
void test_template(std::string_view templateName, std::function< void()> body)
void define_template_fn(std::string_view templateName, FunctionPointer< void()> body)