diff options
Diffstat (limited to 'pk.h.in')
| -rw-r--r-- | pk.h.in | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -288,6 +288,18 @@ * } * ``` * +******************************************************************************** +* pktst.h: define PK_IMPL_TST before including pk.h to enable ad-hoc. +* +* Provides a simple testing framework +* +* Examples: +* ```c +* main() { +* pk_test_run_test_groups(&my_get_test_group_func, 1); +* } +* ``` +* *******************************************************************************/ #define PK_VERSION "@@PK_VERSION@@" @@ -320,4 +332,7 @@ # ifndef PK_IMPL_FUNCINSTR # define PK_IMPL_FUNCINSTR # endif +# ifndef PK_IMPL_TST +# define PK_IMPL_TST +# endif #endif |
