solana-go/nativetype_test.go

14 lines
196 B
Go
Raw Normal View History

2020-11-24 11:39:33 -08:00
package solana
import (
"testing"
2020-11-24 11:39:33 -08:00
"github.com/stretchr/testify/require"
)
2020-11-24 11:39:33 -08:00
func TestMustPublicKeyFromBase58(t *testing.T) {
require.Panics(t, func() {
MustPublicKeyFromBase58("toto")
})
2020-11-24 11:39:33 -08:00
}