()
| 80 | use super::*; |
| 81 | |
| 82 | fn test_context() -> RequestContext { |
| 83 | RequestContext { |
| 84 | peer_id: "0279BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798" |
| 85 | .parse() |
| 86 | .unwrap(), |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | // Minimal mock - just tracks protocol number |
| 91 | struct MockProtocol(u8); |
no test coverage detected