Clementine-audio-player-Mac.../tests/main.cpp

14 lines
311 B
C++
Raw Normal View History

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