Added test suites testevent and testkeyboard.

This commit is contained in:
Markus Kauppila 2011-08-09 18:40:14 +03:00
parent c6bc7ef7af
commit 04ff51483f
7 changed files with 83 additions and 3 deletions

View file

@ -0,0 +1,34 @@
#include <stdio.h>
#include <SDL/SDL.h>
#include "../../include/SDL_test.h"
/*!
* Note: Add test for keyboard here
*
*/
/* Test cases */
static const TestCaseReference test1 =
(TestCaseReference){ "keyboard_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
keyboard_test(void *arg)
{
AssertPass("");
}