MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / __init__

Method __init__

Test/testlib/resultset.py:135–143  ·  view source on GitHub ↗

Create a new empty ResultSet. Args: test_set_name: The test set these results were generated by.

(self, test_set_name: str)

Source from the content-addressed store, hash-verified

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 '''

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected