(self, originPath, goalPath)
| 19 | |
| 20 | class createBlankFile: |
| 21 | def __init__(self, originPath, goalPath): |
| 22 | self.origin_path = originPath |
| 23 | self.goal_path = goalPath |
| 24 | |
| 25 | def createNewFiles(self): |
| 26 | filenameList = readFilenameList(self.origin_path) |
nothing calls this directly
no outgoing calls
no test coverage detected