diff --git a/tests/e2e/e2e_convert_cosmos_coins_test.go b/tests/e2e/e2e_convert_cosmos_coins_test.go index d1439b33..9a913d87 100644 --- a/tests/e2e/e2e_convert_cosmos_coins_test.go +++ b/tests/e2e/e2e_convert_cosmos_coins_test.go @@ -20,6 +20,17 @@ import ( const initialCosmosCoinConversionDenomFunds = int64(1e4) +// setupConvertToCoinTest prepares a test environment for cosmos coin conversion tests. +// It retrieves allowed cosmos denoms from parameters, sets up initial funds, and creates a funded test account. +// +// Parameters: +// - suite: The test suite instance +// - accountName: Name of the test account to be created +// +// Returns: +// - denom: The cosmos denom used for testing +// - initialFunds: Initial funds allocated to the test account +// - user: The created and funded test account func setupConvertToCoinTest( suite *IntegrationTestSuite, accountName string, ) (denom string, initialFunds sdk.Coins, user *testutil.SigningAccount) {