Home
last modified time | relevance | path

Searched refs:IsNotSubstring (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1544 GTEST_API_ AssertionResult IsNotSubstring(const char* needle_expr,
1548 GTEST_API_ AssertionResult IsNotSubstring(const char* needle_expr,
1556 GTEST_API_ AssertionResult IsNotSubstring(const char* needle_expr,
1566 GTEST_API_ AssertionResult IsNotSubstring(const char* needle_expr,
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc218 using testing::IsNotSubstring;
2684 EXPECT_TRUE(IsNotSubstring("", "", "needle", "haystack")); in TEST()
2685 EXPECT_FALSE(IsNotSubstring("", "", "needle", "two needles")); in TEST()
2691 EXPECT_TRUE(IsNotSubstring("", "", L"needle", L"haystack")); in TEST()
2692 EXPECT_FALSE(IsNotSubstring("", "", L"needle", L"two needles")); in TEST()
2703 IsNotSubstring("needle_expr", "haystack_expr", L"needle", L"two needles") in TEST()
2710 EXPECT_FALSE(IsNotSubstring("", "", std::string("hello"), "ahellob")); in TEST()
2711 EXPECT_TRUE(IsNotSubstring("", "", "hello", std::string("world"))); in TEST()
2722 IsNotSubstring("needle_expr", "haystack_expr", ::std::string("needle"), in TEST()
2733 IsNotSubstring("", "", ::std::wstring(L"needle"), L"two needles")); in TEST()
[all …]
/freebsd/contrib/googletest/googletest/src/
H A Dgtest.cc1871 AssertionResult IsNotSubstring(const char* needle_expr, in IsNotSubstring() function
1877 AssertionResult IsNotSubstring(const char* needle_expr, in IsNotSubstring() function
1889 AssertionResult IsNotSubstring(const char* needle_expr, in IsNotSubstring() function
1903 AssertionResult IsNotSubstring(const char* needle_expr, in IsNotSubstring() function
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc1927 EXPECT_PRED_FORMAT2(IsNotSubstring, "Stack trace:", output); in TEST()