view test/automated/testsdl.c @ 3740:e451d5d288e9 gsoc2009_unit_tests

Merged into one big app, while keeping modular applications also.
author Edgar Simo <bobbens@gmail.com>
date Sun, 02 Aug 2009 16:01:23 +0000
parents
children 808fad5fb593
line wrap: on
line source

/*
 * SDL test suite framework code.
 *
 * Written by Edgar Simo "bobbens"
 *
 * Released under Public Domain.
 */


#include "platform/platform.h"
#include "rwops/rwops.h"
#include "surface/surface.h"
#include "render/render.h"


int main( int argc, char *argv[] )
{
   (void) argc;
   (void) argv;

   test_platform();
   test_rwops();
   test_surface();
   test_render();

   return 0;
}