Lines Matching refs:EXPECT_STREQ
109 EXPECT_STREQ(L"", writer.FilterContents(L"").c_str()); in TEST()
110 EXPECT_STREQ(L"foo", writer.FilterContents(L"foo\x10").c_str()); in TEST()
111 EXPECT_STREQ(L"fool", writer.FilterContents(L"foo\x10l").c_str()); in TEST()
112 EXPECT_STREQ(L"foo", writer.FilterContents(L"foo\x10\x7F").c_str()); in TEST()
113 EXPECT_STREQ(L"foo", writer.FilterContents(L"foo\x10\x7F\x88").c_str()); in TEST()
114 EXPECT_STREQ(L"bar", writer.FilterContents(L"bar\x10\x7F\x88").c_str()); in TEST()
118 EXPECT_STREQ(L"", writer.FilterContents(L"").c_str()); in TEST()
119 EXPECT_STREQ(L"f", writer.FilterContents(L"foo\x10").c_str()); in TEST()
120 EXPECT_STREQ(L"f", writer.FilterContents(L"foo\x10l").c_str()); in TEST()
121 EXPECT_STREQ(L"f", writer.FilterContents(L"foo\x10\x7F").c_str()); in TEST()
122 EXPECT_STREQ(L"f", writer.FilterContents(L"foo\x10\x7F\x88").c_str()); in TEST()
123 EXPECT_STREQ(L"ba", writer.FilterContents(L"bar\x10\x7F\x88").c_str()); in TEST()