uvg266/tests/tests_main.c
Ari Koivula 6b4d113feb Replace seatest with greatest as a framework for unit tests.
- Add our own Github fork of greatest as a submodule, in case we want to
  improve it and push changes upstream easily in the future.
- Update existing unit tests to use greatest.
- Update Visual Studio project to remove traces of seatest and include greatest.
2014-01-31 15:57:49 +02:00

15 lines
258 B
C

#include "greatest/greatest.h"
GREATEST_MAIN_DEFS();
extern SUITE(sad_tests);
extern SUITE(picture_list_tests);
int main(int argc, char **argv)
{
GREATEST_MAIN_BEGIN();
RUN_SUITE(sad_tests);
RUN_SUITE(picture_list_tests);
GREATEST_MAIN_BEGIN();
}