diff options
author | Dave Hiller <daveh@lindenlab.com> | 2009-07-14 16:52:40 +0000 |
---|---|---|
committer | Dave Hiller <daveh@lindenlab.com> | 2009-07-14 16:52:40 +0000 |
commit | c2e425e5395c1b1b43a2f477565e374d919f10ee (patch) | |
tree | 55aa63b298f296f9ecac5fa30b1fc18be1885627 /indra/test/test.cpp | |
parent | a05617a65472b94b0b0f02f26fc396d8584faa4f (diff) |
QAR-1651
svn merge -r126784:126785 svn+ssh://svn.lindenlab.com/svn/linden/branches/mock-3 into trunk
Diffstat (limited to 'indra/test/test.cpp')
-rw-r--r-- | indra/test/test.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/test/test.cpp b/indra/test/test.cpp index ba81c6e49e..c9e985c914 100644 --- a/indra/test/test.cpp +++ b/indra/test/test.cpp @@ -54,6 +54,9 @@ # include "ctype_workaround.h" #endif +#include <gmock/gmock.h> +#include <gtest/gtest.h> + namespace tut { std::string sSourceDir; @@ -238,6 +241,9 @@ void wouldHaveCrashed(const std::string& message) int main(int argc, char **argv) { + // The following line must be executed to initialize Google Mock + // (and Google Test) before running the tests. + ::testing::InitGoogleMock(&argc, argv); LLError::initForApplication("."); LLError::setFatalFunction(wouldHaveCrashed); LLError::setDefaultLevel(LLError::LEVEL_ERROR); |