00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00019
00020 #ifndef NET_INSTAWEB_UTIL_PUBLIC_GTEST_H_
00021 #define NET_INSTAWEB_UTIL_PUBLIC_GTEST_H_
00022
00023 #include "net/instaweb/util/public/string.h"
00024 #include "net/instaweb/util/public/string_util.h"
00025 #include "gtest/gtest.h"
00026
00027 namespace net_instaweb {
00028
00029 GoogleString GTestSrcDir();
00030 GoogleString GTestTempDir();
00031
00032 }
00033
00034 namespace testing {
00035 namespace internal {
00036
00038 inline GTEST_API_ AssertionResult CmpHelperSTREQ(
00039 const char* expected_expression,
00040 const char* actual_expression,
00041 const StringPiece& expected,
00042 const StringPiece& actual) {
00043 return CmpHelperSTREQ(expected_expression, actual_expression,
00044 expected.as_string().c_str(),
00045 actual.as_string().c_str());
00046 }
00047
00048 }
00049 }
00050
00051 #endif ///< NET_INSTAWEB_UTIL_PUBLIC_GTEST_H_