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