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