Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#pragma once
/**
** \defgroup tests Tests
** This is the test harness.
** @{
*/
typedef struct _tf_test_options_t
{
const char* exe_path;
const char* tests;
} tf_test_options_t;
void tf_tests(const tf_test_options_t* options);
/** @} */