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
242 B

  1. package common
  2. import (
  3. "encoding/json"
  4. "testing"
  5. "github.com/stretchr/testify/require"
  6. )
  7. func TestZKInputs(t *testing.T) {
  8. zki := NewZKInputs(100, 24, 32)
  9. _, err := json.Marshal(zki)
  10. require.Nil(t, err)
  11. // fmt.Println(string(s))
  12. }