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

Latest commit

 

History

History
68 lines (55 loc) · 1.97 KB

File metadata and controls

68 lines (55 loc) · 1.97 KB
 
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_H
#define _SDL_TEST_H
23
24
25
#include <SDL/SDL.h>
Jun 4, 2011
Jun 4, 2011
26
27
28
29
extern int _testReturnValue;
extern int _testAssertsFailed;
extern int _testAssertsPassed;
May 30, 2011
May 30, 2011
30
31
32
33
34
35
36
// \todo Should these be consts?
#define TEST_ENABLED 1
#define TEST_DISABLED 0
/*!
* Holds information about a test case
*/
May 26, 2011
May 26, 2011
37
typedef struct TestCaseReference {
May 30, 2011
May 30, 2011
38
39
40
41
char *name; /*!< "Func2Stress" */
char *description; /*!< "This test beats the crap out of func2()" */
int enabled; /*!< Set to TEST_ENABLED or TEST_DISABLED */
long requirements; /*!< Set to TEST_REQUIRES_OPENGL, TEST_REQUIRES_AUDIO, ... */
May 26, 2011
May 26, 2011
42
43
} TestCaseReference;
Jun 4, 2011
Jun 4, 2011
44
/*! \fn _TestCaseInit
May 30, 2011
May 30, 2011
45
46
47
48
* Initialized the test case. Must be called at
* the beginning of every test case, before doing
* anything else.
*/
Jun 4, 2011
Jun 4, 2011
49
void _TestCaseInit();
May 30, 2011
May 30, 2011
50
Jun 4, 2011
Jun 4, 2011
51
/*! \fn _TestCaseQuit
May 30, 2011
May 30, 2011
52
53
* Deinitializes and exits the test case
*
May 30, 2011
May 30, 2011
54
* \return 0 if test succeeded, otherwise 1
May 30, 2011
May 30, 2011
55
*/
Jun 4, 2011
Jun 4, 2011
56
int _TestCaseQuit();
May 26, 2011
May 26, 2011
57
Jun 4, 2011
Jun 4, 2011
58
59
60
/*!
* todo add comment
*/
Jun 2, 2011
Jun 2, 2011
61
62
void AssertEquals(Uint32 expected, Uint32 actual, char *message, ...);
Jun 4, 2011
Jun 4, 2011
63
64
65
/*!
* todo add comment
*/
Jun 2, 2011
Jun 2, 2011
66
void AssertTrue(int condition, char *message, ...);
67
68
#endif