Added new test suites testvideo, testsyswm and testclipboard.
This commit is contained in:
parent
68633ef568
commit
c6bc7ef7af
10 changed files with 123 additions and 3 deletions
34
test/test-automation/tests/testsyswm/testsyswm.c
Normal file
34
test/test-automation/tests/testsyswm/testsyswm.c
Normal file
|
@ -0,0 +1,34 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#include <SDL/SDL.h>
|
||||
|
||||
#include "../../include/SDL_test.h"
|
||||
|
||||
|
||||
|
||||
/*!
|
||||
* Note: Add test for syswm here
|
||||
*
|
||||
*/
|
||||
|
||||
/* Test cases */
|
||||
static const TestCaseReference test1 =
|
||||
(TestCaseReference){ "syswm_test", "description", TEST_DISABLED, 0, 0 };
|
||||
|
||||
/* Test suite */
|
||||
extern const TestCaseReference *testSuite[] = {
|
||||
&test1, NULL
|
||||
};
|
||||
|
||||
TestCaseReference **QueryTestSuite() {
|
||||
return (TestCaseReference **)testSuite;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Document test case here
|
||||
*/
|
||||
int
|
||||
syswm_test(void *arg)
|
||||
{
|
||||
AssertPass("");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue