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