cosmos-sdk/cmd/gaia/simulation/sim_test.go
Christopher Goes bb217b91a4 Actual Gaia app
2018-07-12 22:01:43 +02:00

22 lines
493 B
Go

package simulation
import (
"testing"
"github.com/stretchr/testify/require"
dbm "github.com/tendermint/tendermint/libs/db"
"github.com/tendermint/tendermint/libs/log"
gaia "github.com/cosmos/cosmos-sdk/cmd/gaia/app"
// stakesim "github.com/cosmos/cosmos-sdk/x/stake/simulation"
)
func TestFullGaiaSimulation(t *testing.T) {
// Setup Gaia application
logger := log.NewNopLogger()
db := dbm.NewMemDB()
app := gaia.NewGaiaApp(logger, db)
require.Equal(t, "GaiaApp", app.Name())
}