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

Latest commit

 

History

History
34 lines (25 loc) · 529 Bytes

File metadata and controls

34 lines (25 loc) · 529 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <SDL/SDL.h>
#include "../../include/SDL_test.h"
/*!
* Note: Add test for syswm here
*
*/
/* Test cases */
static const TestCaseReference test1 =
May 18, 2013
May 18, 2013
16
(TestCaseReference){ "syswm_test", "description", TEST_DISABLED, 0, 0 };
17
18
19
/* Test suite */
extern const TestCaseReference *testSuite[] = {
May 18, 2013
May 18, 2013
20
&test1, NULL
21
22
23
};
TestCaseReference **QueryTestSuite() {
May 18, 2013
May 18, 2013
24
return (TestCaseReference **)testSuite;
25
26
27
28
29
30
31
32
}
/**
* @brief Document test case here
*/
int
syswm_test(void *arg)
{
May 18, 2013
May 18, 2013
33
AssertPass("");