1
0
Fork 0
golang-forgejo-go-chi-captcha/image_test.go
Daniel Baumann cd7c72beb5
Adding upstream version 1.0.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-18 14:30:15 +02:00

17 lines
388 B
Go

// Copyright 2011 Dmitry Chestnykh. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package captcha
import "testing"
func BenchmarkNewImage(b *testing.B) {
b.StopTimer()
d := RandomDigits(DefaultLen)
id := randomID()
b.StartTimer()
for i := 0; i < b.N; i++ {
NewImage(id, d, StdWidth, StdHeight)
}
}