From 81d0f5f4a7f93ef6ad6d2a9139485e6edd6943e2 Mon Sep 17 00:00:00 2001 From: rigelrozanski Date: Thu, 4 Oct 2018 21:37:40 -0400 Subject: [PATCH] add wanted final test case functions --- x/distribution/keeper/allocation_test.go | 7 +++++++ x/distribution/keeper/delegation_test.go | 15 +++++++++++++++ x/distribution/keeper/validator_test.go | 7 +++++++ 3 files changed, 29 insertions(+) create mode 100644 x/distribution/keeper/allocation_test.go create mode 100644 x/distribution/keeper/delegation_test.go create mode 100644 x/distribution/keeper/validator_test.go 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) { + +}