(self)
| 176 | self.assertIs(find_tool_by_name(tools, "b"), t2) |
| 177 | |
| 178 | def test_find_missing(self) -> None: |
| 179 | tools: Tools = [] |
| 180 | self.assertIsNone(find_tool_by_name(tools, "X")) |
| 181 | |
| 182 | |
| 183 | class TestValidationResult(unittest.TestCase): |
nothing calls this directly
no test coverage detected