diff --git a/x/distribution/keeper/allocation_test.go b/x/distribution/keeper/allocation_test.go new file mode 100644 index 0000000000..77daa1cf69 --- /dev/null +++ b/x/distribution/keeper/allocation_test.go @@ -0,0 +1,7 @@ +package keeper + +import "testing" + +func TestAllocateFees(t *testing.T) { + +} diff --git a/x/distribution/keeper/delegation_test.go b/x/distribution/keeper/delegation_test.go new file mode 100644 index 0000000000..36e44a629d --- /dev/null +++ b/x/distribution/keeper/delegation_test.go @@ -0,0 +1,15 @@ +package keeper + +import "testing" + +func TestWithdrawDelegationReward(t *testing.T) { + +} + +func TestWithdrawDelegationRewardsAll(t *testing.T) { + +} + +func TestGetDelegatorRewardsAll(t *testing.T) { + +} diff --git a/x/distribution/keeper/validator_test.go b/x/distribution/keeper/validator_test.go new file mode 100644 index 0000000000..df25ef4e00 --- /dev/null +++ b/x/distribution/keeper/validator_test.go @@ -0,0 +1,7 @@ +package keeper + +import "testing" + +func TestWithdrawValidatorRewardsAll(t *testing.T) { + +}