Specs
Beautiful C++ Test Framework
Loading...
Searching...
No Matches
describe.h
Go to the documentation of this file.
1#pragma once
2
3#include <functional>
4
5#include "../GlobalInterface.h"
6
8
9 inline void describe(std::string_view description, std::function<void()> body) {
11 description, function_pointer(std::move(body))
12 );
13 }
14}
void describe(std::string_view description, std::function< void()> body)
Definition describe.h:9
void define_group_fn(std::string_view description, FunctionPointer< void()> body, bool removeUnderscores=false)