00b0d4411f
* tests: add benchmark tests setup * fix: localized benchmark tests to keeper * update benchmark Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> (cherry picked from commit 9305788d885ed16df9ece06daef4193ecd9df1f5) Co-authored-by: Vladislav Varadinov <vladislav.varadinov@gmail.com>
31 lines
545 B
Go
31 lines
545 B
Go
package keeper_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/evmos/ethermint/x/evm/types"
|
|
)
|
|
|
|
func BenchmarkSetParams(b *testing.B) {
|
|
suite := KeeperTestSuite{}
|
|
suite.SetupTestWithT(b)
|
|
params := types.DefaultParams()
|
|
|
|
b.ReportAllocs()
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_ = suite.app.EvmKeeper.SetParams(suite.ctx, params)
|
|
}
|
|
}
|
|
|
|
func BenchmarkGetParams(b *testing.B) {
|
|
suite := KeeperTestSuite{}
|
|
suite.SetupTestWithT(b)
|
|
|
|
b.ReportAllocs()
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_ = suite.app.EvmKeeper.GetParams(suite.ctx)
|
|
}
|
|
}
|