crypto_test.gno

0.21 Kb ยท 12 lines
 1package testutils
 2
 3import (
 4	"testing"
 5)
 6
 7func TestTestAddress(t *testing.T) {
 8	testAddr := TestAddress("author1")
 9	if string(testAddr) != "g1v96hg6r0wgc47h6lta047h6lta047h6lm33tq6" {
10		panic("not equal")
11	}
12}