19 lines
350 B
Go
19 lines
350 B
Go
package keeper_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
testkeeper "cosmos-test/testutil/keeper"
|
|
"cosmos-test/x/cosmostest/types"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestGetParams(t *testing.T) {
|
|
k, ctx := testkeeper.CosmostestKeeper(t)
|
|
params := types.DefaultParams()
|
|
|
|
k.SetParams(ctx, params)
|
|
|
|
require.EqualValues(t, params, k.GetParams(ctx))
|
|
}
|