37#ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_
38#define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_
40#include "gtest/internal/gtest-port.h"
44# include <sys/types.h>
49#if GTEST_HAS_EXCEPTIONS
60#include "gtest/gtest-message.h"
61#include "gtest/internal/gtest-string.h"
62#include "gtest/internal/gtest-filepath.h"
63#include "gtest/internal/gtest-type-util.h"
73#define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar)
74#define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar
127#ifdef GTEST_ELLIPSIS_NEEDS_POD_
130# define GTEST_IS_NULL_LITERAL_(x) false
132# define GTEST_IS_NULL_LITERAL_(x) \
133 (sizeof(::testing::internal::IsNullLiteralHelper(x)) == 1)
138 const std::string& gtest_msg,
const Message& user_msg);
140#if GTEST_HAS_EXCEPTIONS
148class GTEST_API_ GoogleTestFailureException :
public ::std::runtime_error {
150 explicit GoogleTestFailureException(
const TestPartResult& failure);
190 const char* actual_expression,
191 const std::string& expected_value,
192 const std::string& actual_value,
198 const char* expression_text,
199 const char* actual_predicate_value,
200 const char* expected_predicate_value);
231template <
typename RawType>
245 std::numeric_limits<RawType>::digits - 1;
333 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_)
339 union FloatingPointUnion {
359 static Bits SignAndMagnitudeToBiased(
const Bits &sam) {
371 static Bits DistanceBetweenSignAndMagnitudeNumbers(
const Bits &sam1,
373 const Bits biased1 = SignAndMagnitudeToBiased(sam1);
374 const Bits biased2 = SignAndMagnitudeToBiased(sam2);
375 return (biased1 >= biased2) ? (biased1 - biased2) : (biased2 - biased1);
378 FloatingPointUnion u_;
451template <
class TestClass>
492 const char* test_case_name,
494 const char* type_param,
495 const char* value_param,
506#if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
511 TypedTestCasePState() : registered_(false) {}
516 bool AddTestName(
const char* file,
int line,
const char* case_name,
517 const char* test_name) {
519 fprintf(stderr,
"%s Test %s must be defined before "
520 "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n",
521 FormatFileLocation(file, line).c_str(), test_name, case_name);
525 defined_test_names_.insert(test_name);
532 const char* VerifyRegisteredTestNames(
533 const char* file,
int line,
const char* registered_tests);
537 ::std::set<const char*> defined_test_names_;
542inline const char* SkipComma(
const char* str) {
543 const char* comma = strchr(str,
',');
553inline std::string GetPrefixUntilComma(
const char* str) {
554 const char* comma = strchr(str,
',');
555 return comma == NULL ? str : std::string(str, comma);
565template <GTEST_TEMPLATE_ Fixture,
class TestSel,
typename Types>
566class TypeParameterizedTest {
572 static bool Register(
const char* prefix,
const char* case_name,
573 const char* test_names,
int index) {
574 typedef typename Types::Head Type;
575 typedef Fixture<Type> FixtureClass;
576 typedef typename GTEST_BIND_(TestSel, Type) TestClass;
581 (std::string(prefix) + (prefix[0] ==
'\0' ?
"" :
"/") + case_name +
"/"
583 GetPrefixUntilComma(test_names).c_str(),
584 GetTypeName<Type>().c_str(),
586 GetTypeId<FixtureClass>(),
587 TestClass::SetUpTestCase,
588 TestClass::TearDownTestCase,
589 new TestFactoryImpl<TestClass>);
592 return TypeParameterizedTest<Fixture, TestSel, typename Types::Tail>
593 ::Register(prefix, case_name, test_names, index + 1);
598template <GTEST_TEMPLATE_ Fixture,
class TestSel>
599class TypeParameterizedTest<Fixture, TestSel, Types0> {
601 static bool Register(
const char* ,
const char* ,
602 const char* ,
int ) {
611template <GTEST_TEMPLATE_ Fixture,
typename Tests,
typename Types>
612class TypeParameterizedTestCase {
614 static bool Register(
const char* prefix,
const char* case_name,
615 const char* test_names) {
616 typedef typename Tests::Head Head;
619 TypeParameterizedTest<Fixture, Head, Types>::Register(
620 prefix, case_name, test_names, 0);
623 return TypeParameterizedTestCase<Fixture, typename Tests::Tail, Types>
624 ::Register(prefix, case_name, SkipComma(test_names));
629template <GTEST_TEMPLATE_ Fixture,
typename Types>
630class TypeParameterizedTestCase<Fixture, Templates0, Types> {
632 static bool Register(
const char* ,
const char* ,
651 UnitTest* unit_test,
int skip_count);
667 operator bool()
const {
return true; }
695template <
typename T1,
typename T2>
712#define GTEST_REMOVE_REFERENCE_(T) \
713 typename ::testing::internal::RemoveReference<T>::type
726template <
typename T,
size_t N>
731#if defined(_MSC_VER) && _MSC_VER < 1400
735template <
typename T,
size_t N>
743#define GTEST_REMOVE_CONST_(T) \
744 typename ::testing::internal::RemoveConst<T>::type
747#define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \
748 GTEST_REMOVE_CONST_(GTEST_REMOVE_REFERENCE_(T))
760#define GTEST_ADD_REFERENCE_(T) \
761 typename ::testing::internal::AddReference<T>::type
772#define GTEST_REFERENCE_TO_CONST_(T) \
773 GTEST_ADD_REFERENCE_(const GTEST_REMOVE_REFERENCE_(T))
778template <
typename From,
typename To>
787 static From MakeFrom();
799 static char Helper(To);
800 static char (&Helper(...))[2];
809# pragma warning(push)
810# pragma warning(disable:4244)
812 static const bool value =
813 sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
815#elif defined(__BORLANDC__)
819 static const bool value = __is_convertible(From, To);
822 sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
825template <
typename From,
typename To>
834 ImplicitlyConvertible<const T*, const ::ProtocolMessage*>::value ||
835 ImplicitlyConvertible<const T*, const ::proto2::Message*>::value> {
862 typename C::iterator* = NULL,
863 typename C::const_iterator* = NULL) {
884template <
typename T,
typename U>
885bool ArrayEq(
const T* lhs,
size_t size,
const U* rhs);
888template <
typename T,
typename U>
889inline bool ArrayEq(
const T& lhs,
const U& rhs) {
return lhs == rhs; }
892template <
typename T,
typename U,
size_t N>
893inline bool ArrayEq(
const T(&lhs)[N],
const U(&rhs)[N]) {
900template <
typename T,
typename U>
901bool ArrayEq(
const T* lhs,
size_t size,
const U* rhs) {
902 for (
size_t i = 0; i != size; i++) {
911template <
typename Iter,
typename Element>
913 for (Iter it = begin; it != end; ++it) {
924template <
typename T,
typename U>
925void CopyArray(
const T* from,
size_t size, U* to);
928template <
typename T,
typename U>
929inline void CopyArray(
const T& from, U* to) { *to = from; }
932template <
typename T,
typename U,
size_t N>
940template <
typename T,
typename U>
942 for (
size_t i = 0; i != size; i++) {
963template <
typename Element>
973 Init(array, count, relation);
978 Init(rhs.array_, rhs.size_, rhs.relation_to_source_);
986 if (relation_to_source_ ==
kCopy)
991 size_t size()
const {
return size_; }
1002 void Init(
const Element* array,
size_t a_size,
RelationToSource relation) {
1006 Element*
const copy =
new Element[a_size];
1011 relation_to_source_ = relation;
1014 const Element* array_;
1024#define GTEST_MESSAGE_AT_(file, line, message, result_type) \
1025 ::testing::internal::AssertHelper(result_type, file, line, message) \
1026 = ::testing::Message()
1028#define GTEST_MESSAGE_(message, result_type) \
1029 GTEST_MESSAGE_AT_(__FILE__, __LINE__, message, result_type)
1031#define GTEST_FATAL_FAILURE_(message) \
1032 return GTEST_MESSAGE_(message, ::testing::TestPartResult::kFatalFailure)
1034#define GTEST_NONFATAL_FAILURE_(message) \
1035 GTEST_MESSAGE_(message, ::testing::TestPartResult::kNonFatalFailure)
1037#define GTEST_SUCCESS_(message) \
1038 GTEST_MESSAGE_(message, ::testing::TestPartResult::kSuccess)
1043#define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \
1044 if (::testing::internal::AlwaysTrue()) { statement; }
1046#define GTEST_TEST_THROW_(statement, expected_exception, fail) \
1047 GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1048 if (::testing::internal::ConstCharPtr gtest_msg = "") { \
1049 bool gtest_caught_expected = false; \
1051 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
1053 catch (expected_exception const&) { \
1054 gtest_caught_expected = true; \
1058 "Expected: " #statement " throws an exception of type " \
1059 #expected_exception ".\n Actual: it throws a different type."; \
1060 goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
1062 if (!gtest_caught_expected) { \
1064 "Expected: " #statement " throws an exception of type " \
1065 #expected_exception ".\n Actual: it throws nothing."; \
1066 goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
1069 GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__): \
1070 fail(gtest_msg.value)
1072#define GTEST_TEST_NO_THROW_(statement, fail) \
1073 GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1074 if (::testing::internal::AlwaysTrue()) { \
1076 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
1079 goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \
1082 GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \
1083 fail("Expected: " #statement " doesn't throw an exception.\n" \
1084 " Actual: it throws.")
1086#define GTEST_TEST_ANY_THROW_(statement, fail) \
1087 GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1088 if (::testing::internal::AlwaysTrue()) { \
1089 bool gtest_caught_any = false; \
1091 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
1094 gtest_caught_any = true; \
1096 if (!gtest_caught_any) { \
1097 goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \
1100 GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \
1101 fail("Expected: " #statement " throws an exception.\n" \
1102 " Actual: it doesn't.")
1108#define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \
1109 GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1110 if (const ::testing::AssertionResult gtest_ar_ = \
1111 ::testing::AssertionResult(expression)) \
1114 fail(::testing::internal::GetBoolAssertionFailureMessage(\
1115 gtest_ar_, text, #actual, #expected).c_str())
1117#define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \
1118 GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1119 if (::testing::internal::AlwaysTrue()) { \
1120 ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \
1121 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
1122 if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \
1123 goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \
1126 GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \
1127 fail("Expected: " #statement " doesn't generate new fatal " \
1128 "failures in the current thread.\n" \
1129 " Actual: it does.")
1132#define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
1133 test_case_name##_##test_name##_Test
1136#define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\
1137class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\
1139 GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\
1141 virtual void TestBody();\
1142 static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_;\
1143 GTEST_DISALLOW_COPY_AND_ASSIGN_(\
1144 GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\
1147::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\
1149 ::testing::internal::MakeAndRegisterTestInfo(\
1150 #test_case_name, #test_name, NULL, NULL, \
1152 parent_class::SetUpTestCase, \
1153 parent_class::TearDownTestCase, \
1154 new ::testing::internal::TestFactoryImpl<\
1155 GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>);\
1156void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody()
Definition dsd/test/gtest/include/gtest/gtest.h:256
Definition dsd/test/gtest/include/gtest/gtest-message.h:85
Definition dsd/test/gtest/include/gtest/gtest.h:621
Definition dsd/test/gtest/include/gtest/gtest-test-part.h:47
Definition dsd/test/gtest/include/gtest/gtest.h:347
Definition dsd/test/gtest/include/gtest/gtest.h:1119
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:232
FloatingPoint(const RawType &x)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:280
bool is_nan() const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:316
static const size_t kFractionBitCount
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:244
static const Bits kFractionBitMask
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:254
static RawType Infinity()
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:294
static const Bits kExponentBitMask
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:258
static const size_t kExponentBitCount
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:248
bool AlmostEquals(const FloatingPoint &rhs) const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:328
Bits fraction_bits() const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:310
static const size_t kMaxUlps
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:272
TypeWithSize< sizeof(RawType)>::UInt Bits
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:236
static const Bits kSignBitMask
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:251
static RawType ReinterpretBits(const Bits bits)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:287
static const size_t kBitCount
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:241
const Bits & bits() const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:304
Bits exponent_bits() const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:307
Bits sign_bit() const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:313
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:779
static const bool value
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:821
RawElement value_type
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:967
const_iterator begin() const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:992
~NativeArray()
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:981
NativeArray(const Element *array, size_t count, RelationToSource relation)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:972
bool operator==(const NativeArray &rhs) const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:994
const RawElement * const_iterator
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:969
NativeArray(const NativeArray &rhs)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:977
RawElement * iterator
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:968
const_iterator end() const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:993
size_t size() const
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:991
Random(UInt32 seed)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:680
UInt32 Generate(UInt32 range)
static const UInt32 kMaxRange
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:678
void Reseed(UInt32 seed)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:682
ScopedTrace(const char *file, int line, const Message &message)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:434
virtual ~TestFactoryBase()
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:436
virtual Test * CreateTest()=0
TestFactoryBase()
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:443
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:452
virtual Test * CreateTest()
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:454
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:402
static bool dummy_
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:407
Definition dsd/test/gtest/include/gtest/internal/gtest-port.h:1867
#define GTEST_REMOVE_REFERENCE_AND_CONST_(T)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:747
#define GTEST_API_
Definition dsd/test/gtest/include/gtest/internal/gtest-port.h:768
#define GTEST_DISALLOW_ASSIGN_(type)
Definition dsd/test/gtest/include/gtest/internal/gtest-port.h:721
#define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)
Definition dsd/test/gtest/include/gtest/internal/gtest-port.h:726
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:77
GTEST_API_ const char kStackTraceMarker[]
Definition mbelib/test/gtest/include/gtest/internal/gtest-internal.h:105
GTEST_API_ TypeId GetTestTypeId()
const void * TypeId
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:399
TypeWithSize< 4 >::UInt UInt32
Definition dsd/test/gtest/include/gtest/internal/gtest-port.h:1901
bool AlwaysFalse()
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:660
GTEST_API_ bool AlwaysTrue()
TypeId GetTypeId()
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:417
FloatingPoint< double > Double
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:391
Iter ArrayAwareFind(Iter begin, Iter end, const Element &elem)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:912
FloatingPoint< float > Float
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:390
GTEST_API_ bool SkipPrefix(const char *prefix, const char **pstr)
void(* TearDownTestCaseFunc)()
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:472
std::string StreamableToString(const T &streamable)
Definition dsd/test/gtest/include/gtest/gtest-message.h:243
char IsNotContainer
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:867
GTEST_API_ int g_init_gtest_count
Definition mbelib/test/gtest/include/gtest/internal/gtest-internal.h:101
GTEST_API_ AssertionResult EqFailure(const char *expected_expression, const char *actual_expression, const std::string &expected_value, const std::string &actual_value, bool ignoring_case)
IsContainer IsContainerTest(int, typename C::iterator *=NULL, typename C::const_iterator *=NULL)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:861
GTEST_API_ TestInfo * MakeAndRegisterTestInfo(const char *test_case_name, const char *name, const char *type_param, const char *value_param, TypeId fixture_class_id, SetUpTestCaseFunc set_up_tc, TearDownTestCaseFunc tear_down_tc, TestFactoryBase *factory)
int IsContainer
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:859
void(* SetUpTestCaseFunc)()
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:471
GTEST_API_ std::string GetCurrentOsStackTraceExceptTop(UnitTest *unit_test, int skip_count)
RelationToSource
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:949
@ kReference
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:950
@ kCopy
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:951
GTEST_API_ std::string GetBoolAssertionFailureMessage(const AssertionResult &assertion_result, const char *expression_text, const char *actual_predicate_value, const char *expected_predicate_value)
bool IsSpace(char ch)
Definition dsd/test/gtest/include/gtest/internal/gtest-port.h:1671
bool ArrayEq(const T *lhs, size_t size, const U *rhs)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:901
GTEST_API_ std::string AppendUserMessage(const std::string >est_msg, const Message &user_msg)
char IsNullLiteralHelper(Secret *p)
void CopyArray(const T *from, size_t size, U *to)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:941
Definition dsd/test/gmock/include/gmock/gmock-actions.h:49
const T * DefaultValue< T >::value_
Definition dsd/test/gmock/include/gmock/gmock-actions.h:244
class GTEST_API_ testing::InSequence GTEST_ATTRIBUTE_UNUSED_
::std::string PrintToString(const T &value)
Definition dsd/test/gtest/include/gtest/gtest-printers.h:847
T & type
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:756
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:754
T & type
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:754
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:696
const char * value
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:668
ConstCharPtr(const char *str)
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:666
void type
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:876
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:875
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:835
T type
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:721
RemoveConst< T >::type type[N]
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:728
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:719
T type
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:719
T type
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:708
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:706
T type
Definition dsd/test/gtest/include/gtest/internal/gtest-internal.h:706
Definition dsd/test/gtest/include/gtest/internal/gtest-port.h:864
Definition dsd/test/gtest/include/gtest/internal/gtest-port.h:1611