terminology/src/bin/unit_tests.h

23 lines
568 B
C
Raw Normal View History

#ifndef TERMINOLOGY_TY_UNIT_TESTS_H_
#define TERMINOLOGY_TY_UNIT_TESTS_H_ 1
2020-05-23 15:05:29 -07:00
/* Unit tests */
typedef int (*tytest_func)(void);
/* list of tests */
int tytest_dummy(void);
2020-05-24 10:00:24 -07:00
int tytest_sb_skip(void);
int tytest_sb_trim(void);
int tytest_sb_gap(void);
int tytest_sb_steal(void);
int tytest_color_parse_hex(void);
int tytest_color_parse_2hex(void);
int tytest_color_parse_sharp(void);
int tytest_color_parse_uint8(void);
int tytest_color_parse_edc(void);
int tytest_color_parse_css_rgb(void);
int tytest_color_parse_css_hsl(void);
int tytest_extn_matching(void);
2020-05-23 15:05:29 -07:00
#endif