Home | History | Annotate | Download | only in checkers

Lines Matching refs:do_test

1841         def do_test(self, data, is_missing_eof):
1852 do_test(self, '// Newline\n// at EOF\n', False)
1853 do_test(self, '// No newline\n// at EOF', True)
1856 def do_test(self, raw_bytes, has_invalid_utf8):
1869 do_test(self, 'Hello world\n', False)
1870 do_test(self, '\xe9\x8e\xbd\n', False)
1871 do_test(self, '\xe9x\x8e\xbd\n', True)
1874 do_test(self, '\xef\xbf\xbd\n', True)