summaryrefslogtreecommitdiff
path: root/test/fzytest.c
blob: 097a4ae120aa8ddbaf108f02cd64f3d98f0e0715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "greatest/greatest.h"

SUITE(match_suite);
SUITE(choices_suite);
SUITE(properties_suite);

GREATEST_MAIN_DEFS();

int main(int argc, char *argv[]) {
	GREATEST_MAIN_BEGIN();

	RUN_SUITE(match_suite);
	RUN_SUITE(choices_suite);
	RUN_SUITE(properties_suite);

	GREATEST_MAIN_END();
}