set a recovery of the damages at a certain time, which will be processed during emulation
(self, line)
| 185 | self.sn.set_damage(float(rest[0]), int(rest[1])) |
| 186 | |
| 187 | def do_set_recovery(self, line): |
| 188 | "set a recovery of the damages at a certain time, which will be processed during emulation" |
| 189 | arg, args, line = self.parseline(line) |
| 190 | rest = line.split(' ') |
| 191 | self.sn.set_recovery(int(rest[0])) |
| 192 | |
| 193 | def do_check_routing_table(self, line): |
| 194 | "list the routing table of a node at a certain time." |
nothing calls this directly
no test coverage detected