2011-05-23 13:14:09 +03:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2011-05-26 18:38:56 +03:00
|
|
|
#ifndef _SDL_TEST_H
|
|
|
|
#define _SDL_TEST_H
|
2011-05-23 13:14:09 +03:00
|
|
|
|
|
|
|
#include <SDL/SDL.h>
|
|
|
|
|
2011-06-04 17:50:23 +03:00
|
|
|
extern int _testReturnValue;
|
|
|
|
extern int _testAssertsFailed;
|
|
|
|
extern int _testAssertsPassed;
|
|
|
|
|
2011-05-30 11:53:59 +03:00
|
|
|
// \todo Should these be consts?
|
|
|
|
#define TEST_ENABLED 1
|
|
|
|
#define TEST_DISABLED 0
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Holds information about a test case
|
|
|
|
*/
|
2011-05-26 19:19:46 +03:00
|
|
|
typedef struct TestCaseReference {
|
2011-05-30 11:53:59 +03:00
|
|
|
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, ... */
|
2011-05-26 19:19:46 +03:00
|
|
|
} TestCaseReference;
|
|
|
|
|
2011-06-04 17:50:23 +03:00
|
|
|
/*! \fn _TestCaseInit
|
2011-05-30 11:53:59 +03:00
|
|
|
* Initialized the test case. Must be called at
|
|
|
|
* the beginning of every test case, before doing
|
|
|
|
* anything else.
|
|
|
|
*/
|
2011-06-04 17:50:23 +03:00
|
|
|
void _TestCaseInit();
|
2011-05-30 11:53:59 +03:00
|
|
|
|
2011-06-04 17:50:23 +03:00
|
|
|
/*! \fn _TestCaseQuit
|
2011-05-30 11:53:59 +03:00
|
|
|
* Deinitializes and exits the test case
|
|
|
|
*
|
2011-05-30 12:55:40 +03:00
|
|
|
* \return 0 if test succeeded, otherwise 1
|
2011-05-30 11:53:59 +03:00
|
|
|
*/
|
2011-06-04 17:50:23 +03:00
|
|
|
int _TestCaseQuit();
|
2011-05-26 18:38:56 +03:00
|
|
|
|
2011-06-04 17:50:23 +03:00
|
|
|
/*!
|
|
|
|
* todo add comment
|
|
|
|
*/
|
2011-06-01 18:03:09 -07:00
|
|
|
void AssertEquals(Uint32 expected, Uint32 actual, char *message, ...);
|
|
|
|
|
2011-06-04 17:50:23 +03:00
|
|
|
/*!
|
|
|
|
* todo add comment
|
|
|
|
*/
|
2011-06-01 18:03:09 -07:00
|
|
|
void AssertTrue(int condition, char *message, ...);
|
2011-05-23 13:14:09 +03:00
|
|
|
|
|
|
|
#endif
|