Home
last modified time | relevance | path

Searched refs:ASSERT_STREQ (Results 1 – 7 of 7) sorted by relevance

/freebsd/tests/sys/fs/fusefs/
H A Dmount.cc100 ASSERT_STREQ("http://something", statbuf.f_mntfromname); in TEST_F()
110 ASSERT_STREQ("fusefs.myfs", statbuf.f_fstypename); in TEST_F()
H A Dfifo.cc107 ASSERT_STREQ(message, MESSAGE); in TEST_F()
208 ASSERT_STREQ(message, MESSAGE); in TEST_F()
H A Dwrite.cc391 ASSERT_STREQ(readbuf, CONTENTS1); in TEST_F()
1274 ASSERT_STREQ(readbuf, CONTENTS0); in TEST_F()
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc2501 TEST(StringAssertionTest, ASSERT_STREQ) { in TEST() argument
2503 ASSERT_STREQ(p1, p1); in TEST()
2507 ASSERT_STREQ(p1, p2); in TEST()
2509 EXPECT_FATAL_FAILURE(ASSERT_STREQ("bad", "good"), " \"bad\"\n \"good\""); in TEST()
2514 ASSERT_STREQ(static_cast<const char*>(nullptr), nullptr); in TEST()
2515 EXPECT_FATAL_FAILURE(ASSERT_STREQ(nullptr, "non-null"), "non-null"); in TEST()
2520 EXPECT_FATAL_FAILURE(ASSERT_STREQ("non-null", nullptr), "non-null"); in TEST()
2559 ASSERT_STREQ(static_cast<const wchar_t*>(nullptr), nullptr); in TEST()
2562 ASSERT_STREQ(L"", L""); in TEST()
3240 static void CompareAndIncrementCharPtrs() { ASSERT_STREQ(p1_++, p2_++); } in CompareAndIncrementCharPtrs()
[all …]
H A Dgoogletest-listener-test.cc252 ASSERT_STREQ(expected_data[i], data[i].c_str()) << "at position " << i; in VerifyResults()
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1962 #define ASSERT_STREQ(s1, s2) \ macro
/freebsd/contrib/googletest/docs/reference/
H A Dassertions.md234 `ASSERT_STREQ(`*`str1`*`,`*`str2`*`)`