gago/benchmark_test.go

11 lines
135 B
Go
Raw Permalink Normal View History

2021-09-11 12:47:32 +02:00
package gago
import "testing"
func BenchmarkEnhance(b *testing.B) {
ga.Initialize()
for i := 0; i < b.N; i++ {
ga.Enhance()
}
}