cosmos-sdk/tests/e2e/distribution/cli_test.go
Alex | Interchain Labs d68d169a63
feat: add x/protocolpool (#23933)
Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com>
2025-03-29 19:45:39 +00:00

26 lines
498 B
Go

//go:build e2e
// +build e2e
package distribution
import (
"testing"
"github.com/stretchr/testify/suite"
)
func TestE2ETestSuite(t *testing.T) {
suite.Run(t, NewE2ETestSuite(false))
suite.Run(t, NewE2ETestSuite(true))
}
func TestGRPCQueryTestSuite(t *testing.T) {
suite.Run(t, NewGRPCQueryTestSuite(false))
suite.Run(t, NewGRPCQueryTestSuite(true))
}
func TestWithdrawAllSuite(t *testing.T) {
suite.Run(t, NewWithdrawAllTestSuite(false))
suite.Run(t, NewWithdrawAllTestSuite(true))
}