亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? gtest-internal.h

?? Search s framework 老外寫(xiě)的
?? H
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
//   comment:          a comment on the test that will be included in the//                     test output//   fixture_class_id: ID of the test fixture class//   set_up_tc:        pointer to the function that sets up the test case//   tear_down_tc:     pointer to the function that tears down the test case//   factory:          pointer to the factory that creates a test object.//                     The newly created TestInfo instance will assume//                     ownership of the factory object.TestInfo* MakeAndRegisterTestInfo(    const char* test_case_name, const char* name,    const char* test_case_comment, const char* comment,    TypeId fixture_class_id,    SetUpTestCaseFunc set_up_tc,    TearDownTestCaseFunc tear_down_tc,    TestFactoryBase* factory);#if defined(GTEST_HAS_TYPED_TEST) || defined(GTEST_HAS_TYPED_TEST_P)// State of the definition of a type-parameterized test case.class TypedTestCasePState { public:  TypedTestCasePState() : registered_(false) {}  // Adds the given test name to defined_test_names_ and return true  // if the test case hasn't been registered; otherwise aborts the  // program.  bool AddTestName(const char* file, int line, const char* case_name,                   const char* test_name) {    if (registered_) {      fprintf(stderr, "%s Test %s must be defined before "              "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n",              FormatFileLocation(file, line).c_str(), test_name, case_name);      abort();    }    defined_test_names_.insert(test_name);    return true;  }  // Verifies that registered_tests match the test names in  // defined_test_names_; returns registered_tests if successful, or  // aborts the program otherwise.  const char* VerifyRegisteredTestNames(      const char* file, int line, const char* registered_tests); private:  bool registered_;  ::std::set<const char*> defined_test_names_;};// Skips to the first non-space char after the first comma in 'str';// returns NULL if no comma is found in 'str'.inline const char* SkipComma(const char* str) {  const char* comma = strchr(str, ',');  if (comma == NULL) {    return NULL;  }  while (isspace(*(++comma))) {}  return comma;}// Returns the prefix of 'str' before the first comma in it; returns// the entire string if it contains no comma.inline String GetPrefixUntilComma(const char* str) {  const char* comma = strchr(str, ',');  return comma == NULL ? String(str) : String(str, comma - str);}// TypeParameterizedTest<Fixture, TestSel, Types>::Register()// registers a list of type-parameterized tests with Google Test.  The// return value is insignificant - we just need to return something// such that we can call this function in a namespace scope.//// Implementation note: The GTEST_TEMPLATE_ macro declares a template// template parameter.  It's defined in gtest-type-util.h.template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>class TypeParameterizedTest { public:  // 'index' is the index of the test in the type list 'Types'  // specified in INSTANTIATE_TYPED_TEST_CASE_P(Prefix, TestCase,  // Types).  Valid values for 'index' are [0, N - 1] where N is the  // length of Types.  static bool Register(const char* prefix, const char* case_name,                       const char* test_names, int index) {    typedef typename Types::Head Type;    typedef Fixture<Type> FixtureClass;    typedef typename GTEST_BIND_(TestSel, Type) TestClass;    // First, registers the first type-parameterized test in the type    // list.    MakeAndRegisterTestInfo(        String::Format("%s%s%s/%d", prefix, prefix[0] == '\0' ? "" : "/",                       case_name, index).c_str(),        GetPrefixUntilComma(test_names).c_str(),        String::Format("TypeParam = %s", GetTypeName<Type>().c_str()).c_str(),        "",        GetTypeId<FixtureClass>(),        TestClass::SetUpTestCase,        TestClass::TearDownTestCase,        new TestFactoryImpl<TestClass>);    // Next, recurses (at compile time) with the tail of the type list.    return TypeParameterizedTest<Fixture, TestSel, typename Types::Tail>        ::Register(prefix, case_name, test_names, index + 1);  }};// The base case for the compile time recursion.template <GTEST_TEMPLATE_ Fixture, class TestSel>class TypeParameterizedTest<Fixture, TestSel, Types0> { public:  static bool Register(const char* /*prefix*/, const char* /*case_name*/,                       const char* /*test_names*/, int /*index*/) {    return true;  }};// TypeParameterizedTestCase<Fixture, Tests, Types>::Register()// registers *all combinations* of 'Tests' and 'Types' with Google// Test.  The return value is insignificant - we just need to return// something such that we can call this function in a namespace scope.template <GTEST_TEMPLATE_ Fixture, typename Tests, typename Types>class TypeParameterizedTestCase { public:  static bool Register(const char* prefix, const char* case_name,                       const char* test_names) {    typedef typename Tests::Head Head;    // First, register the first test in 'Test' for each type in 'Types'.    TypeParameterizedTest<Fixture, Head, Types>::Register(        prefix, case_name, test_names, 0);    // Next, recurses (at compile time) with the tail of the test list.    return TypeParameterizedTestCase<Fixture, typename Tests::Tail, Types>        ::Register(prefix, case_name, SkipComma(test_names));  }};// The base case for the compile time recursion.template <GTEST_TEMPLATE_ Fixture, typename Types>class TypeParameterizedTestCase<Fixture, Templates0, Types> { public:  static bool Register(const char* prefix, const char* case_name,                       const char* test_names) {    return true;  }};#endif  // GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P// Returns the current OS stack trace as a String.//// The maximum number of stack frames to be included is specified by// the gtest_stack_trace_depth flag.  The skip_count parameter// specifies the number of top frames to be skipped, which doesn't// count against the number of frames to be included.//// For example, if Foo() calls Bar(), which in turn calls// GetCurrentOsStackTraceExceptTop(..., 1), Foo() will be included in// the trace but Bar() and GetCurrentOsStackTraceExceptTop() won't.String GetCurrentOsStackTraceExceptTop(UnitTest* unit_test, int skip_count);// Returns the number of failed test parts in the given test result object.int GetFailedPartCount(const TestResult* result);}  // namespace internal}  // namespace testing#define GTEST_MESSAGE_(message, result_type) \  ::testing::internal::AssertHelper(result_type, __FILE__, __LINE__, message) \    = ::testing::Message()#define GTEST_FATAL_FAILURE_(message) \  return GTEST_MESSAGE_(message, ::testing::TPRT_FATAL_FAILURE)#define GTEST_NONFATAL_FAILURE_(message) \  GTEST_MESSAGE_(message, ::testing::TPRT_NONFATAL_FAILURE)#define GTEST_SUCCESS_(message) \  GTEST_MESSAGE_(message, ::testing::TPRT_SUCCESS)#define GTEST_TEST_THROW_(statement, expected_exception, fail) \  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \  if (const char* gtest_msg = "") { \    bool gtest_caught_expected = false; \    try { \      statement; \    } \    catch (expected_exception const&) { \      gtest_caught_expected = true; \    } \    catch (...) { \      gtest_msg = "Expected: " #statement " throws an exception of type " \                  #expected_exception ".\n  Actual: it throws a different " \                  "type."; \      goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \    } \    if (!gtest_caught_expected) { \      gtest_msg = "Expected: " #statement " throws an exception of type " \                  #expected_exception ".\n  Actual: it throws nothing."; \      goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \    } \  } else \    GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__): \      fail(gtest_msg)#define GTEST_TEST_NO_THROW_(statement, fail) \  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \  if (const char* gtest_msg = "") { \    try { \      statement; \    } \    catch (...) { \      gtest_msg = "Expected: " #statement " doesn't throw an exception.\n" \                  "  Actual: it throws."; \      goto GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__); \    } \  } else \    GTEST_CONCAT_TOKEN_(gtest_label_testnothrow_, __LINE__): \      fail(gtest_msg)#define GTEST_TEST_ANY_THROW_(statement, fail) \  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \  if (const char* gtest_msg = "") { \    bool gtest_caught_any = false; \    try { \      statement; \    } \    catch (...) { \      gtest_caught_any = true; \    } \    if (!gtest_caught_any) { \      gtest_msg = "Expected: " #statement " throws an exception.\n" \                  "  Actual: it doesn't."; \      goto GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__); \    } \  } else \    GTEST_CONCAT_TOKEN_(gtest_label_testanythrow_, __LINE__): \      fail(gtest_msg)#define GTEST_TEST_BOOLEAN_(boolexpr, booltext, actual, expected, fail) \  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \  if (boolexpr) \    ; \  else \    fail("Value of: " booltext "\n  Actual: " #actual "\nExpected: " #expected)#define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \  if (const char* gtest_msg = "") { \    ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \    { statement; } \    if (gtest_fatal_failure_checker.has_new_fatal_failure()) { \      gtest_msg = "Expected: " #statement " doesn't generate new fatal " \                  "failures in the current thread.\n" \                  "  Actual: it does."; \      goto GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__); \    } \  } else \    GTEST_CONCAT_TOKEN_(gtest_label_testnofatal_, __LINE__): \      fail(gtest_msg)// Expands to the name of the class that implements the given test.#define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \  test_case_name##_##test_name##_Test// Helper macro for defining tests.#define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\ public:\  GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\ private:\  virtual void TestBody();\  static ::testing::TestInfo* const test_info_;\  GTEST_DISALLOW_COPY_AND_ASSIGN_(\      GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\};\\::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\  ::test_info_ =\    ::testing::internal::MakeAndRegisterTestInfo(\        #test_case_name, #test_name, "", "", \        (parent_id), \        parent_class::SetUpTestCase, \        parent_class::TearDownTestCase, \        new ::testing::internal::TestFactoryImpl<\            GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>);\void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody()#endif  // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_INTERNAL_H_

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产伦精品一区二区三区在线观看| 一本久道久久综合中文字幕 | 成人妖精视频yjsp地址| 一区二区三区在线观看动漫| 欧美国产97人人爽人人喊| 精品久久久影院| 在线成人免费观看| 日本精品裸体写真集在线观看| 国产成人在线视频播放| 国产综合久久久久久鬼色| 美腿丝袜亚洲色图| 三级一区在线视频先锋| 亚洲成a人片在线不卡一二三区| 自拍偷自拍亚洲精品播放| 国产精品电影一区二区三区| 欧美国产一区在线| 精品国免费一区二区三区| 91精品国产综合久久小美女 | 精品嫩草影院久久| 91精品国产色综合久久久蜜香臀| 欧美喷潮久久久xxxxx| 欧美三区免费完整视频在线观看| 色播五月激情综合网| 一本大道久久a久久精二百| 一本色道久久综合亚洲91| 色综合av在线| 欧美日韩视频在线一区二区| 欧美在线一区二区三区| 欧美日韩一本到| 欧美美女激情18p| 制服丝袜成人动漫| 日韩精品专区在线| 26uuu色噜噜精品一区二区| 26uuu色噜噜精品一区| 精品sm捆绑视频| 欧美精品一区二区三区一线天视频| 日韩女优毛片在线| 久久久综合视频| 国产精品―色哟哟| 亚洲国产成人高清精品| 日韩极品在线观看| 国产精品一区二区三区99| 成人黄色777网| 97se狠狠狠综合亚洲狠狠| 欧洲一区二区三区在线| 4438成人网| 国产三级三级三级精品8ⅰ区| 国产精品亲子伦对白| 亚洲男女一区二区三区| 亚洲综合视频在线| 午夜精品aaa| 午夜精品久久久久久久99水蜜桃 | 欧美一卡二卡在线| 精品理论电影在线| 日本一区二区免费在线观看视频| 中文字幕日本不卡| 婷婷激情综合网| 国产一区二区在线免费观看| 色综合天天综合| 91精品国产福利在线观看| 久久无码av三级| 最新日韩在线视频| 日本不卡一区二区| 精品制服美女久久| 99久精品国产| 欧美日韩国产bt| 国产亚洲自拍一区| 亚洲日本韩国一区| 日韩成人av影视| 国产999精品久久久久久绿帽| 色婷婷综合久久久中文一区二区 | 26uuu欧美| 亚洲自拍另类综合| 极品销魂美女一区二区三区| 成人av电影在线网| 欧美成人伊人久久综合网| 亚洲欧美日韩久久| 国产真实乱偷精品视频免| 欧美手机在线视频| 中文字幕av不卡| 麻豆精品一二三| 欧美系列在线观看| 国产精品日韩精品欧美在线| 毛片不卡一区二区| 欧美午夜一区二区| 国产精品素人视频| 久久国产剧场电影| 91福利在线看| 国产精品视频线看| 青娱乐精品视频在线| 欧美日韩国产小视频在线观看| 国产精品网曝门| 成人高清免费观看| 久久久久久日产精品| 一区二区三区在线影院| av福利精品导航| 久久中文字幕电影| 免费三级欧美电影| 91麻豆国产在线观看| 久久久99久久精品欧美| 久久99蜜桃精品| 日韩视频在线一区二区| 性做久久久久久免费观看欧美| 91小视频免费观看| 中文字幕乱码一区二区免费| 韩国女主播成人在线| 日韩午夜av一区| 日本免费在线视频不卡一不卡二| www.久久久久久久久| 欧美xxxxxxxx| 美女一区二区在线观看| 欧美一区二区三区视频| 五月激情六月综合| 在线综合视频播放| 日韩成人免费电影| 欧美一级夜夜爽| 日韩1区2区日韩1区2区| 日韩色视频在线观看| 麻豆视频一区二区| 精品日产卡一卡二卡麻豆| 麻豆91精品91久久久的内涵| 欧美一区二区三区人| 亚洲欧美精品午睡沙发| 99久久99久久精品免费看蜜桃| 久久综合九色综合97_久久久| 激情图片小说一区| 国产日韩欧美一区二区三区乱码| 国产福利精品导航| 国产精品女人毛片| 色偷偷成人一区二区三区91| 夜夜嗨av一区二区三区网页| 欧美日韩在线综合| 免费观看在线色综合| 日韩视频一区在线观看| 久国产精品韩国三级视频| 欧美成人一区二区三区片免费| 国产一区二区三区四区五区美女| 日韩视频不卡中文| 国产精品一二三四| 国产精品私人影院| 91久久精品一区二区三| 亚洲成av人片一区二区梦乃 | 91成人免费网站| 亚洲超丰满肉感bbw| 日韩视频不卡中文| 国产九色sp调教91| 亚洲视频在线一区观看| 欧美午夜理伦三级在线观看| 蜜桃av一区二区| 久久久久久久久久看片| 不卡的av网站| 一区二区三区四区中文字幕| 717成人午夜免费福利电影| 九一九一国产精品| 最新中文字幕一区二区三区| 欧美日韩国产大片| 国产成人小视频| 一区二区三区色| 欧美成人综合网站| 99国产精品久久久久| 亚洲小少妇裸体bbw| 日韩一区二区免费在线观看| 久久成人免费日本黄色| 欧美老年两性高潮| 成人综合婷婷国产精品久久蜜臀| 一级中文字幕一区二区| 国产丝袜欧美中文另类| 欧美亚一区二区| 国产.欧美.日韩| 亚洲成人先锋电影| 亚洲男人电影天堂| 精品国产免费视频| 欧美精品一二三| 日本中文字幕一区二区视频| 亚洲精品高清在线观看| 日韩欧美视频在线| 欧美午夜电影在线播放| 成人免费看的视频| 久久丁香综合五月国产三级网站| 亚洲国产日产av| 中文一区一区三区高中清不卡| 日韩美女一区二区三区| 一本色道综合亚洲| 91在线精品一区二区| 国内精品国产成人国产三级粉色 | 精品在线一区二区三区| 亚洲精品高清在线观看| 亚洲欧洲日产国码二区| 欧美va亚洲va香蕉在线| 欧美一区二区美女| eeuss影院一区二区三区| 国产成人aaaa| 理论电影国产精品| 五月天丁香久久| 婷婷一区二区三区| 一区二区不卡在线播放| 亚洲精品成人精品456| 欧美国产精品一区二区三区| 久久综合九色综合97_久久久| 在线成人av网站|