add sdl2_net test

This commit is contained in:
alexey.lysiuk 2022-08-21 11:59:05 +03:00
parent bda525b49a
commit c38bffd7c4

9
test/sdl2_net.cpp Normal file
View file

@ -0,0 +1,9 @@
#include <SDL_net.h>
int main()
{
AEDI_EXPECT(SDLNet_Init() == 0);
SDLNet_Quit();
return 0;
}