(t *testing.T)
| 83 | } |
| 84 | |
| 85 | func TestIsPeerActive(t *testing.T) { |
| 86 | server := constructServer() |
| 87 | server.peerPool = peerPool() |
| 88 | res := server.isPeerActive(uint32(2), 1) |
| 89 | t.Logf("TestIsPeerActive: %v", res) |
| 90 | } |
| 91 | |
| 92 | func TestIsProposer(t *testing.T) { |
| 93 | server := constructServer() |
nothing calls this directly
no test coverage detected