(self, node)
| 554 | GeometricMean(results_for_total), '') |
| 555 | |
| 556 | def AppendChild(self, node): |
| 557 | if node.__class__ not in (TraceConfig, LeafTraceConfig): |
| 558 | raise Exception( |
| 559 | "%s only allows TraceConfig and LeafTraceConfig as child configs." % |
| 560 | type(self).__name__) |
| 561 | super(TraceConfig, self).AppendChild(node) |
| 562 | |
| 563 | |
| 564 | class RunnableConfig(TraceConfig): |
nothing calls this directly
no test coverage detected