cosmos-sdk/tests/e2e/distribution/cli_test.go
Likhita Polavarapu 155bcfaf21
refactor(distribution): CLI tests using Tendermint Mock (#13692)
* move distribution cli tests to e2e tests

* wip: add cli tests

* wip: remove duplicate helpers.go file

* fix something

Co-authored-by: Julien Robert <julien@rbrt.fr>
Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com>
Co-authored-by: Marko <marbar3778@yahoo.com>
2022-11-03 17:09:23 +00:00

23 lines
374 B
Go

//go:build e2e
// +build e2e
package distribution
import (
"testing"
"github.com/stretchr/testify/suite"
)
func TestIntegrationTestSuite(t *testing.T) {
suite.Run(t, new(IntegrationTestSuite))
}
func TestGRPCQueryTestSuite(t *testing.T) {
suite.Run(t, new(GRPCQueryTestSuite))
}
func TestWithdrawAllSuite(t *testing.T) {
suite.Run(t, new(WithdrawAllTestSuite))
}