(input, expect)
| 33 | |
| 34 | def coding_checker(self, coder): |
| 35 | def check(input, expect): |
| 36 | self.assertEqual(coder(input), (expect, len(input))) |
| 37 | return check |
| 38 | |
| 39 | # On small versions of Windows like Windows IoT or Windows Nano Server not all codepages are present |
no test coverage detected
searching dependent graphs…