diff options
Diffstat (limited to 'minctest.h')
-rw-r--r-- | minctest.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -23,12 +23,12 @@ #include <sys/time.h> struct tester { - uint16_t passed; // Number of passed tests - uint16_t failed; // Number of failed tests - bool show_pass; // Whether or not to print a message when a test passes - struct timeval start_last_test; // Time last test was started - struct timeval created; // Time this was created - __suseconds_t used; // usecs used for tests + uint16_t passed; /* Number of passed tests */ + uint16_t failed; /* Number of failed tests */ + bool show_pass; /* Whether or not to print a message when a test passes */ + struct timeval start_last_test; /* Time last test was started */ + struct timeval created; /* Time this was created */ + __suseconds_t used; /* usecs used for tests */ }; /** @@ -88,4 +88,4 @@ void test_start_timer(struct tester *); */ void test_true(struct tester *tester, bool check, const char* text); -#endif // MINCTEST_H +#endif /* MINCTEST_H */ |