(self, protocol)
| 55 | |
| 56 | @pytest.mark.parametrize("protocol", [3, "3"]) |
| 57 | def test_resp3_matches(self, protocol): |
| 58 | assert check_protocol_version(protocol, 3) is True |
| 59 | assert check_protocol_version(protocol, 2) is False |
| 60 | |
| 61 | @pytest.mark.parametrize("protocol", [2, "2"]) |
| 62 | def test_resp2_matches(self, protocol): |
nothing calls this directly
no test coverage detected