Added empty test suite for render tests.

This commit is contained in:
Markus Kauppila 2011-08-04 20:52:39 +03:00
parent 4ae611f924
commit cdd56f176b
5 changed files with 48 additions and 3 deletions

View file

@ -0,0 +1,39 @@
/**
* Original code: automated SDL platform test written by Edgar Simo "bobbens"
* Extended and updated by aschiffler at ferzkopp dot net
*/
#include <stdio.h>
#include <SDL/SDL.h>
#include "../SDL_test.h"
/*!
* Note: Port tests from "/test/automated/render" here
*
*/
/* Test cases */
static const TestCaseReference test1 =
(TestCaseReference){ "render_test", "rendery", TEST_ENABLED, 0, 0 };
/* Test suite */
extern const TestCaseReference *testSuite[] = {
&test1, NULL
};
TestCaseReference **QueryTestSuite() {
return (TestCaseReference **)testSuite;
}
/**
* @brief Document test case here
*/
int
render_test(void *arg)
{
AssertPass("");
}