Struct Test

Struct Documentation

struct Test

Represents a single test case within a test suite.

Stores the function name, description, and the test function itself.

Public Functions

Test(std::string func_name, std::string desc, std::function<void()> func)

Public Members

std::string func_name
std::string desc
std::function<void()> func