Set up test fixtures common to all test cases; this is done before any test case is run.
(self)
| 105 | self._port_links.append(PortLink(sut_port=sut_port, tg_port=tg_port)) |
| 106 | |
| 107 | def set_up_suite(self) -> None: |
| 108 | """ |
| 109 | Set up test fixtures common to all test cases; this is done before |
| 110 | any test case is run. |
| 111 | """ |
| 112 | |
| 113 | def tear_down_suite(self) -> None: |
| 114 | """ |