18 lines
388 B
Go
18 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)
|
||
|
}
|
||
|
}
|