mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-03 16:54:22 +00:00
6a2698f5ec
The goal is to enable testing of application specific files, e.g. for mkvpropedit.
11 lines
167 B
C++
11 lines
167 B
C++
#include "common/common_pch.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
int
|
|
main(int argc,
|
|
char **argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|