2013-10-11 22:27:04 -04:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "gmock/gmock.h"
|
|
|
|
#include <boost/python.hpp>
|
|
|
|
|
|
|
|
int main( int argc, char **argv ) {
|
|
|
|
Py_Initialize();
|
|
|
|
// Necessary because of usage of the ReleaseGil class
|
|
|
|
PyEval_InitThreads();
|
|
|
|
|
2013-10-29 22:13:52 -04:00
|
|
|
testing::InitGoogleMock( &argc, argv );
|
2013-10-11 22:27:04 -04:00
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|
|
|
|
|