Create a new empty ResultSet. Args: test_set_name: The test set these results were generated by.
(self, test_set_name: str)
| 133 | ''' |
| 134 | |
| 135 | def __init__(self, test_set_name: str): |
| 136 | ''' |
| 137 | Create a new empty ResultSet. |
| 138 | |
| 139 | Args: |
| 140 | test_set_name: The test set these results were generated by. |
| 141 | ''' |
| 142 | self.test_set_name = test_set_name |
| 143 | self.records: list[Record] = [] |
| 144 | |
| 145 | def add_record(self, record: Record) -> None: |
| 146 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected