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

Latest commit

 

History

History
60 lines (46 loc) · 1.82 KB

File metadata and controls

60 lines (46 loc) · 1.82 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>
May 30, 2011
May 30, 2011
26
27
28
29
30
31
32
33
// \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
34
typedef struct TestCaseReference {
May 30, 2011
May 30, 2011
35
36
37
38
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
39
40
} TestCaseReference;
May 30, 2011
May 30, 2011
41
42
43
44
45
46
47
48
49
50
/*! \fn TestCaseInit
* Initialized the test case. Must be called at
* the beginning of every test case, before doing
* anything else.
*/
void TestCaseInit();
/*! \fn TestCaseQuit
* Deinitializes and exits the test case
*
May 30, 2011
May 30, 2011
51
* \return 0 if test succeeded, otherwise 1
May 30, 2011
May 30, 2011
52
*/
May 30, 2011
May 30, 2011
53
int TestCaseQuit();
May 30, 2011
May 30, 2011
54
May 26, 2011
May 26, 2011
55
Jun 2, 2011
Jun 2, 2011
56
57
58
void AssertEquals(Uint32 expected, Uint32 actual, char *message, ...);
void AssertTrue(int condition, char *message, ...);
59
60
#endif