This repository was archived by the owner on Mar 24, 2025. It is now read-only.
forked from fastbuild/fastbuild
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathUnitTest.h
72 lines (60 loc) · 3.16 KB
/
UnitTest.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// UnitTest.h - interface for a unit test
//------------------------------------------------------------------------------
#pragma once
#include "UnitTestManager.h"
// UnitTest - Tests derive from this interface
//------------------------------------------------------------------------------
class UnitTest
{
protected:
explicit UnitTest() { m_NextTestGroup = nullptr; }
inline virtual ~UnitTest() = default;
virtual void RunTests() = 0;
virtual const char * GetName() const = 0;
// Run before and after each test
virtual void PreTest() const {}
virtual void PostTest( bool /*passed*/ ) const {}
private:
friend class UnitTestManager;
UnitTest * m_NextTestGroup;
};
// macros
//------------------------------------------------------------------------------
#define TEST_ASSERT( expression ) \
do { \
PRAGMA_DISABLE_PUSH_MSVC(4127) \
if ( !( expression ) ) \
{ \
if ( UnitTestManager::AssertFailure( #expression, __FILE__, __LINE__ ) ) \
{ \
BREAK_IN_DEBUGGER; \
} \
} \
} while ( false ); \
PRAGMA_DISABLE_POP_MSVC
#define DECLARE_TESTS \
virtual void RunTests(); \
virtual const char * GetName() const;
#define REGISTER_TESTS_BEGIN( testGroupName ) \
void testGroupName##Register() \
{ \
UnitTestManager::RegisterTestGroup( new testGroupName ); \
} \
const char * testGroupName::GetName() const \
{ \
return #testGroupName; \
} \
void testGroupName::RunTests() \
{ \
UnitTestManager & utm = UnitTestManager::Get(); \
(void)utm;
#define REGISTER_TEST( testFunction ) \
utm.TestBegin( this, #testFunction ); \
testFunction(); \
utm.TestEnd();
#define REGISTER_TESTS_END \
}
#define REGISTER_TESTGROUP( testGroupName ) \
extern void testGroupName##Register(); \
testGroupName##Register();
//------------------------------------------------------------------------------