Welcome to mirror list, hosted at ThFree Co, Russian Federation.

minunit_vars.h « tests « applications - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ef5f825aeed23d57c55cc77fc961336bbbc3e6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "minunit.h"

/*  Misc. counters */
int minunit_run = 0;
int minunit_assert = 0;
int minunit_fail = 0;
int minunit_status = 0;

/*  Timers */
double minunit_real_timer = 0;
double minunit_proc_timer = 0;

/*  Last message */
char minunit_last_message[MINUNIT_MESSAGE_LEN];