forked from easz/cpp-semver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.hpp
61 lines (51 loc) · 1.7 KB
/
test.hpp
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
#ifndef CPP_SEMVER_TEST_HPP
#define CPP_SEMVER_TEST_HPP
#include <iostream>
#define RAISE_TEST_ERROR throw std::runtime_error("Test failed!")
#define TEST_ASSERT( EXP ) \
{ \
if ( ! (EXP) ) \
{ \
std::cerr << "[FAILED][ASSERT] " << #EXP \
<< " at line: " << __LINE__ \
<< " in file: " << __FILE__ \
<< std::endl; \
RAISE_TEST_ERROR; \
} \
}
#define TEST_THROWS( EX, EXP ) \
try \
{ \
EXP; \
std::cerr << "[FAILED][THROWS] " << #EXP \
<< " at line: " << __LINE__ \
<< " in file: " << __FILE__ \
<< std::endl; \
RAISE_TEST_ERROR; \
} \
catch( EX const& ) { \
} \
catch ( ... ) \
{ \
TEST_ASSERT(!"unexpected exception"); \
}
void run_test();
int main()
{
std::cout << "[Test Suite] " << __FILE__ << std::endl;
std::cout << std::endl;
try
{
run_test();
std::cout << std::endl;
std::cout << "[OK]" << std::endl;
return 0;
}
catch (...)
{
std::cout << std::endl;
std::cout << "[FAILED]" << std::endl;
return 1;
}
}
#endif