| 19 | /* Fixture */ |
| 20 | |
| 21 | void |
| 22 | _timerSetUp(void *arg) |
| 23 | { |
| 24 | /* Start SDL timer subsystem */ |
| 25 | int ret = SDL_InitSubSystem( SDL_INIT_TIMER ); |
| 26 | SDLTest_AssertPass("Call to SDL_InitSubSystem(SDL_INIT_TIMER)"); |
| 27 | SDLTest_AssertCheck(ret==0, "Check result from SDL_InitSubSystem(SDL_INIT_TIMER)"); |
| 28 | if (ret != 0) { |
| 29 | SDLTest_LogError("%s", SDL_GetError()); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | /* Test case functions */ |
| 34 |
nothing calls this directly
no test coverage detected