Searched refs:const_wstr (Results 1 – 1 of 1) sorted by relevance
582 const wchar_t const_wstr[] = L"This is a test of something or other....."; in TEST() local583 wchar_t wstr[NUM_WCHARS(sizeof(const_wstr))]; in TEST()585 EXPECT_EQ(wstr, wmemmove(wstr, const_wstr, NUM_WCHARS(sizeof(const_wstr)))); in TEST()586 EXPECT_STREQ(const_wstr, wstr); in TEST()588 EXPECT_EQ(wstr+5, wmemmove(wstr+5, wstr, NUM_WCHARS(sizeof(const_wstr)) - 6)); in TEST()