Page Speed Optimization Libraries
1.2.24.1
|
00001 /* 00002 * Copyright 2010 Google Inc. 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http:///www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 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 00049 inline GTEST_API_ AssertionResult CmpHelperSTRNE( 00050 const char* expected_expression, 00051 const char* actual_expression, 00052 const StringPiece& expected, 00053 const StringPiece& actual) { 00054 return CmpHelperSTRNE(expected_expression, actual_expression, 00055 expected.as_string().c_str(), 00056 actual.as_string().c_str()); 00057 } 00058 00059 } 00060 } 00061 00062 #endif ///< NET_INSTAWEB_UTIL_PUBLIC_GTEST_H_