Added empty test suite for render tests.
This commit is contained in:
parent
4ae611f924
commit
cdd56f176b
5 changed files with 48 additions and 3 deletions
39
test/test-automation/testrender/testrender.c
Normal file
39
test/test-automation/testrender/testrender.c
Normal 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("");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue