tildefriends/src/tests.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
243 B
C
Raw Normal View History

#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);
/** @} */