| 3 | |
| 4 | |
| 5 | class ReduceTest(Reduce): |
| 6 | # pylint: disable-next=super-init-not-called - we do not want the super __init__ to be called |
| 7 | def __init__(self): |
| 8 | # super().__init__('', '', '') |
| 9 | pass |
| 10 | |
| 11 | def runtool(self, filedata=None): |
| 12 | return True |
| 13 | |
| 14 | def writefile(self, filedata): |
| 15 | pass |
| 16 | |
| 17 | def writebackupfile(self, filedata): |
| 18 | pass |
| 19 | |
| 20 | |
| 21 | def test_removecomments(): |
no outgoing calls