2010-03-03 00:37:12 +01:00
|
|
|
#include <gmock/gmock.h>
|
|
|
|
|
|
|
|
#include "resources_env.h"
|
2010-03-03 01:33:31 +01:00
|
|
|
#include "metatypes_env.h"
|
2010-03-03 00:37:12 +01:00
|
|
|
|
|
|
|
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);
|
2010-03-03 00:37:12 +01:00
|
|
|
|
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|