(t *testing.T)
| 31 | } |
| 32 | |
| 33 | func TestProposers(t *testing.T) { |
| 34 | SetRunMode(Dev) |
| 35 | props := Proposers() |
| 36 | assert.Equal(t, devProposers, props) |
| 37 | } |
| 38 | |
| 39 | func TestValidators(t *testing.T) { |
| 40 | SetRunMode(Dev) |
nothing calls this directly
no test coverage detected