aboutsummaryrefslogtreecommitdiff
path: root/tests/_test_boilerplate.c
blob: b13568d63fb66f8f35dce983876aaa13b121d78d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "testing.h"

/*
void test_NAME() {
    struct testcase {

    };
    struct testcase tc[] = {
        { // ... },
    }

    for (size_t i = 0; i < sizeof(tc) / sizeof(*tc); i++) {
        // STASIS_ASSERT();
    }
}
 */

int main(int argc, char *argv[]) {
    STASIS_TEST_BEGIN_MAIN();
    STASIS_TEST_FUNC *tests[] = {
        //test_NAME,
    };
    STASIS_TEST_RUN(tests);
    STASIS_TEST_END_MAIN();
}