28 lines
701 B
C++
28 lines
701 B
C++
|
#include "my-gtest-main.h"
|
||
|
|
||
|
#include "gmock/gmock.h"
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
#include <boost/optional.hpp>
|
||
|
#include <cpp-utils/assert/assert.h>
|
||
|
|
||
|
namespace {
|
||
|
boost::optional<boost::filesystem::path> executable;
|
||
|
}
|
||
|
|
||
|
const boost::filesystem::path& get_executable() {
|
||
|
ASSERT(executable != boost::none, "Executable path not set");
|
||
|
return *executable;
|
||
|
}
|
||
|
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
executable = boost::filesystem::path(argv[0]);
|
||
|
|
||
|
// Since Google Mock depends on Google Test, InitGoogleMock() is
|
||
|
// also responsible for initializing Google Test. Therefore there's
|
||
|
// no need for calling testing::InitGoogleTest() separately.
|
||
|
testing::InitGoogleMock(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|