()
| 36 | |
| 37 | |
| 38 | def test_protocol_class_same_name() -> None: |
| 39 | class TestName(metaclass=Protocol): |
| 40 | share_class = ShareTensor |
| 41 | security_levels = ["semi-honest"] |
| 42 | |
| 43 | with pytest.raises(ValueError): |
| 44 | |
| 45 | class TestName(metaclass=Protocol): |
| 46 | share_class = ShareTensor |
| 47 | security_levels = ["semi-honest"] |
| 48 | |
| 49 | |
| 50 | def test_exception_unsupported_fss_operation(): |
nothing calls this directly
no outgoing calls
no test coverage detected