File: fzytest.c

package info (click to toggle)
fzy 1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 368 kB
  • sloc: ansic: 3,439; ruby: 402; sh: 68; makefile: 46
file content (17 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (2)
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();
}