mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
6b4d113feb
- 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.
15 lines
258 B
C
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();
|
|
}
|