(self, parameters, gflops)
| 66 | class TableRow: |
| 67 | # parameters = class TestCombination instantiation |
| 68 | def __init__(self, parameters, gflops): |
| 69 | self.parameters = parameters |
| 70 | self.gflops = gflops |
| 71 | |
| 72 | def __str__(self): |
| 73 | return self.parameters.__str__() + '; ' + self.gflops |
nothing calls this directly
no outgoing calls
no test coverage detected