(self, name, run, count, duration)
| 332 | return s + "}" |
| 333 | |
| 334 | def add_data_point(self, name, run, count, duration): |
| 335 | if name not in self.data: |
| 336 | self.data[name] = Row(name, self.run_count) |
| 337 | |
| 338 | self.data[name].add_data_point(run, count, duration) |
| 339 | |
| 340 | def prepare(self, stdev=False): |
| 341 | if self.data: |
no test coverage detected