Files
planetmint-go/app/app_test.go
2023-09-14 10:49:05 +02:00

14 lines
358 B
Go

package app
import (
"testing"
"github.com/stretchr/testify/assert"
)
// TestAccountAddressPrefix makes sure that the account address prefix has a certain value.
func TestAccountAddressPrefix(t *testing.T) {
accountAddressPrefix := "plmnt"
assert.Equal(t, AccountAddressPrefix, accountAddressPrefix, "The account address prefix should be 'plmnt'.")
}