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