diff --git a/barbench_test.go b/barbench_test.go index 20f4082..c641907 100644 --- a/barbench_test.go +++ b/barbench_test.go @@ -3,6 +3,8 @@ import ( "io/ioutil" "testing" + + "github.com/vbauerster/mpb/decor" ) func BenchmarkIncrSingleBar(b *testing.B) { @@ -20,3 +22,11 @@ bar.Increment() } } + +func BenchmarkIncrSingleBarWithNameDecorator(b *testing.B) { + p := New(WithOutput(ioutil.Discard)) + bar := p.AddBar(int64(b.N), PrependDecorators(decor.Name("test"))) + for i := 0; i < b.N; i++ { + bar.Increment() + } +}