mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
18 lines
306 B
C
18 lines
306 B
C
|
|
/*
|
||
|
|
* Minimalist, partial TAP implementation
|
||
|
|
*
|
||
|
|
* Copyright Johan Malm 2020
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef TAP_H
|
||
|
|
#define TAP_H
|
||
|
|
|
||
|
|
#define ok1(__x__) (ok(__x__, "%s", #__x__))
|
||
|
|
|
||
|
|
void plan(int nr_tests);
|
||
|
|
void diag(const char *fmt, ...);
|
||
|
|
int ok(int result, const char *test_name, ...);
|
||
|
|
int exit_status(void);
|
||
|
|
|
||
|
|
#endif /* TAP_H */
|