1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-15 10:48:33 +01:00
Clementine-audio-player-Mac.../tests/main.cpp
2010-03-03 00:33:31 +00:00

14 lines
311 B
C++

#include <gmock/gmock.h>
#include "resources_env.h"
#include "metatypes_env.h"
int main(int argc, char** argv) {
testing::InitGoogleMock(&argc, argv);
testing::AddGlobalTestEnvironment(new ResourcesEnvironment);
testing::AddGlobalTestEnvironment(new MetatypesEnvironment);
return RUN_ALL_TESTS();
}