Searched refs:const_wstr (Results 1 – 1 of 1) sorted by relevance
454 const wchar_t const_wstr[] = L"This is a test of something or other....."; in TEST() local455 wchar_t* wstr = new wchar_t[sizeof(const_wstr)]; in TEST()457 wmemmove(wstr, const_wstr, sizeof(const_wstr)/sizeof(wchar_t)); in TEST()458 EXPECT_STREQ(const_wstr, wstr); in TEST()460 wmemmove(wstr+5, wstr, sizeof(const_wstr)/sizeof(wchar_t) - 6); in TEST()