Tilde Friends
tests.h
1#pragma once
2
12typedef struct _tf_test_options_t
13{
15 const char* exe_path;
17 const char* tests;
19 const char* db_path;
21
26void tf_tests(const tf_test_options_t* options);
27
void tf_tests(const tf_test_options_t *options)
struct _tf_test_options_t tf_test_options_t
Definition: tests.h:13
const char * tests
Definition: tests.h:17
const char * db_path
Definition: tests.h:19
const char * exe_path
Definition: tests.h:15