mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-29 06:15:24 +00:00
12 lines
203 B
C++
12 lines
203 B
C++
#include "common/common_pch.h"
|
|
|
|
#include "tests/unit/init.h"
|
|
|
|
int
|
|
main(int argc,
|
|
char **argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
::mtxut::init_suite(argv[0]);
|
|
return RUN_ALL_TESTS();
|
|
}
|