mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-25 03:11:06 +01:00
29 lines
427 B
C
29 lines
427 B
C
#ifndef TESTS_H
|
|
#define TESTS_H
|
|
|
|
#if XASH_ENGINE_TESTS
|
|
|
|
struct tests_stats_s
|
|
{
|
|
uint passed;
|
|
uint failed;
|
|
};
|
|
|
|
extern struct tests_stats_s tests_stats;
|
|
|
|
#define TRUN( x ) Msg( "Running " #x "\n" ); x
|
|
|
|
#define TASSERT( exp ) \
|
|
if(!( exp )) \
|
|
{ \
|
|
tests_stats.failed++; \
|
|
Msg( "assert failed at %s:%i\n", __FILE__, __LINE__ ) \
|
|
} \
|
|
else tests_stats.passed++;
|
|
|
|
void Test_RunLibCommon( void );
|
|
|
|
#endif
|
|
|
|
#endif /* TESTS_H */
|