mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-23 07:50:13 +01:00
9 lines
129 B
C++
9 lines
129 B
C++
|
#include <gtest/gtest.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
::testing::InitGoogleTest(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|
||
|
|