Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
95 lines (77 loc) · 2.44 KB

File metadata and controls

95 lines (77 loc) · 2.44 KB
 
May 23, 2011
May 23, 2011
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
May 26, 2011
May 26, 2011
21
22
#ifndef _SDL_TEST_C
#define _SDL_TEST_C
May 23, 2011
May 23, 2011
23
Jun 2, 2011
Jun 2, 2011
24
25
26
#include <stdio.h> /* printf/fprintf */
#include <stdarg.h> /* va_list */
May 26, 2011
May 26, 2011
27
#include "SDL_test.h"
May 23, 2011
May 23, 2011
28
May 30, 2011
May 30, 2011
29
/*! \brief return value of test case. Non-zero value means that the test failed */
Jun 4, 2011
Jun 4, 2011
30
int _testReturnValue;
May 26, 2011
May 26, 2011
31
Jun 4, 2011
Jun 4, 2011
32
33
34
35
36
/*! \brief counts the failed asserts */
int _testAssertsFailed;
/*! \brief counts the passed asserts */
int _testAssertsPassed;
Jun 2, 2011
Jun 2, 2011
37
May 26, 2011
May 26, 2011
38
void
Jun 4, 2011
Jun 4, 2011
39
_TestCaseInit()
May 26, 2011
May 26, 2011
40
41
{
_testReturnValue = 0;
Jun 2, 2011
Jun 2, 2011
42
43
_testAssertsFailed = 0;
_testAssertsPassed = 0;
May 26, 2011
May 26, 2011
44
45
}
May 30, 2011
May 30, 2011
46
int
Jun 4, 2011
Jun 4, 2011
47
_TestCaseQuit()
May 26, 2011
May 26, 2011
48
{
Jun 4, 2011
Jun 4, 2011
49
//! \todo make the test fail, if it does not contain any asserts
Jun 4, 2011
Jun 4, 2011
50
51
52
53
54
printf("Asserts: passed %d, failed %d\n", _testAssertsPassed, _testAssertsFailed);
if(_testAssertsFailed == 0 && _testAssertsPassed == 0) {
_testReturnValue = 2;
}
May 30, 2011
May 30, 2011
55
return _testReturnValue;
May 26, 2011
May 26, 2011
56
57
}
Jun 4, 2011
Jun 4, 2011
58
void
Jun 2, 2011
Jun 2, 2011
59
AssertEquals(Uint32 expected, Uint32 actual, char* message, ...)
May 23, 2011
May 23, 2011
60
{
Jun 2, 2011
Jun 2, 2011
61
62
63
64
65
66
67
va_list args;
char buf[256];
if(expected != actual) {
va_start( args, message );
SDL_vsnprintf( buf, sizeof(buf), message, args );
va_end( args );
Jun 4, 2011
Jun 4, 2011
68
printf("Assert Equals failed: expected %d, got %d; %s\n", expected, actual, buf);
Jun 2, 2011
Jun 2, 2011
69
70
71
72
73
_testReturnValue = 1;
_testAssertsFailed++;
} else {
_testAssertsPassed++;
}
May 23, 2011
May 23, 2011
74
75
}
Jun 4, 2011
Jun 4, 2011
76
void
Jun 2, 2011
Jun 2, 2011
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
AssertTrue(int condition, char *message, ...)
{
va_list args;
char buf[256];
if (!condition) {
va_start( args, message );
SDL_vsnprintf( buf, sizeof(buf), message, args );
va_end( args );
printf("Assert IsTrue failed: %s\n", buf);
_testReturnValue = 1;
_testAssertsFailed++;
} else {
_testAssertsPassed++;
}
}
May 26, 2011
May 26, 2011
94
May 23, 2011
May 23, 2011
95
#endif