uvg266/tests/tests_main.c
Ari Koivula 9a3569b5c6 Update unit tests to work with current build.
- Updating picture_list wasn't really worth it so I removed it.
2014-06-13 15:30:23 +03:00

13 lines
189 B
C

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