2020-10-10 10:32:06 +00:00
|
|
|
#pragma once
|
|
|
|
#include "minunit.h"
|
|
|
|
|
|
|
|
/* Misc. counters */
|
|
|
|
extern int minunit_run;
|
|
|
|
extern int minunit_assert;
|
|
|
|
extern int minunit_fail;
|
|
|
|
extern int minunit_status;
|
|
|
|
|
|
|
|
/* Timers */
|
|
|
|
extern double minunit_real_timer;
|
|
|
|
extern double minunit_proc_timer;
|
|
|
|
|
|
|
|
/* Last message */
|
2022-05-06 13:37:10 +00:00
|
|
|
extern char minunit_last_message[MINUNIT_MESSAGE_LEN];
|