Lines Matching refs:DoTest
3033 def DoTest(self, lines): function
3043 DoTest(self, ['using namespace foo;'])
3044 DoTest(self, ['', '', '', 'using namespace foo;'])
3045 DoTest(self, ['// hello', 'using namespace foo;'])
3048 def DoTest(self, data, is_missing_eof): function
3059 DoTest(self, '// Newline\n// at EOF\n', False)
3060 DoTest(self, '// No newline\n// at EOF', True)
3063 def DoTest(self, raw_bytes, has_invalid_utf8): function
3077 DoTest(self, 'Hello world\n', False)
3078 DoTest(self, '\xe9\x8e\xbd\n', False)
3079 DoTest(self, '\xe9x\x8e\xbd\n', True)
3082 DoTest(self, '\xef\xbf\xbd\n', True)