mirror of
https://github.com/0glabs/0g-chain.git
synced 2025-03-14 21:46:12 +00:00
20 lines
388 B
Go
20 lines
388 B
Go
![]() |
package keeper_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
//"github.com/kava-labs/kava/x/swap"
|
||
|
"github.com/kava-labs/kava/x/swap/testutil"
|
||
|
//"github.com/kava-labs/kava/x/swap/types"
|
||
|
"github.com/stretchr/testify/suite"
|
||
|
//sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
)
|
||
|
|
||
|
type invariantTestSuite struct {
|
||
|
testutil.Suite
|
||
|
}
|
||
|
|
||
|
func TestGenesisTestSuite(t *testing.T) {
|
||
|
suite.Run(t, new(invariantTestSuite))
|
||
|
}
|