()
| 17 | |
| 18 | |
| 19 | def test_signal_is_protocol(): |
| 20 | class DummySignal: |
| 21 | def predict(self, row: dict) -> TierVote: |
| 22 | return TierVote(tier_id=0, confidence=1.0) |
| 23 | |
| 24 | sig = DummySignal() |
| 25 | result = sig.predict({"messages": []}) |
| 26 | assert result.tier_id == 0 |
| 27 | |
| 28 | |
| 29 | def test_tier_vote_invalid_tier_id(): |
nothing calls this directly
no test coverage detected