(t *testing.T)
| 90 | } |
| 91 | |
| 92 | func TestIsProposer(t *testing.T) { |
| 93 | server := constructServer() |
| 94 | server.peerPool = peerPool() |
| 95 | res := server.isProposer(1, 1) |
| 96 | t.Logf("TestIsProposer: %v", res) |
| 97 | } |
| 98 | |
| 99 | func TestIs2ndProposer(t *testing.T) { |
| 100 | server := constructServer() |
nothing calls this directly
no test coverage detected