You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
211 B

  1. package factory
  2. import (
  3. "testing"
  4. "github.com/tendermint/tendermint/types"
  5. )
  6. func TestMakeHeader(t *testing.T) {
  7. MakeHeader(t, &types.Header{})
  8. }
  9. func TestRandomNodeID(t *testing.T) {
  10. RandomNodeID(t)
  11. }