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

Latest commit

 

History

History
87 lines (71 loc) · 2.24 KB

File metadata and controls

87 lines (71 loc) · 2.24 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 */
May 26, 2011
May 26, 2011
30
31
static int _testReturnValue;
Jun 2, 2011
Jun 2, 2011
32
33
34
static int _testAssertsFailed;
static int _testAssertsPassed;
May 26, 2011
May 26, 2011
35
void
May 30, 2011
May 30, 2011
36
TestCaseInit()
May 26, 2011
May 26, 2011
37
38
{
_testReturnValue = 0;
Jun 2, 2011
Jun 2, 2011
39
40
_testAssertsFailed = 0;
_testAssertsPassed = 0;
May 26, 2011
May 26, 2011
41
42
}
May 30, 2011
May 30, 2011
43
int
May 30, 2011
May 30, 2011
44
TestCaseQuit()
May 26, 2011
May 26, 2011
45
{
Jun 2, 2011
Jun 2, 2011
46
printf("Asserts: passed %d, failed %d\n", _testAssertsPassed, _testAssertsFailed);
May 30, 2011
May 30, 2011
47
return _testReturnValue;
May 26, 2011
May 26, 2011
48
49
}
Jun 2, 2011
Jun 2, 2011
50
51
void
AssertEquals(Uint32 expected, Uint32 actual, char* message, ...)
May 23, 2011
May 23, 2011
52
{
Jun 2, 2011
Jun 2, 2011
53
54
55
56
57
58
59
60
61
62
63
64
65
va_list args;
char buf[256];
if(expected != actual) {
va_start( args, message );
SDL_vsnprintf( buf, sizeof(buf), message, args );
va_end( args );
printf("Assert Equals failed: expected %d, got %d; %s\n", expected, actual, buf);
_testReturnValue = 1;
_testAssertsFailed++;
} else {
_testAssertsPassed++;
}
May 23, 2011
May 23, 2011
66
67
}
Jun 2, 2011
Jun 2, 2011
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
void
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
86
May 23, 2011
May 23, 2011
87
#endif