(self, loader)
| 10 | self.val = val |
| 11 | |
| 12 | def load(self, loader): |
| 13 | loader.add_option("client_replay", bool, self.val, "test") |
| 14 | loader.add_option("server_replay", bool, self.val, "test") |
| 15 | loader.add_option("rfile", bool, self.val, "test") |
| 16 | |
| 17 | @command.command("readfile.reading") |
| 18 | def readfile(self) -> bool: |
nothing calls this directly
no test coverage detected