Skip to content

Commit

Permalink
Benchmark apptesting setup time (#2143)
Browse files Browse the repository at this point in the history
  • Loading branch information
ValarDragon authored Jul 19, 2022
1 parent 47a2366 commit 3aecc23
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/apptesting/bench_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package apptesting

import "testing"

func BenchmarkSetup(b *testing.B) {
for i := 0; i < b.N; i++ {
s := new(KeeperTestHelper)
s.Setup()
}
}

0 comments on commit 3aecc23

Please sign in to comment.