color/bench_test.go
Eduard Urbach 16881d5e5a
All checks were successful
/ test (push) Successful in 14s
Renamed files
2025-06-06 17:07:05 +02:00

37 lines
No EOL
493 B
Go

package color_test
import (
"testing"
"git.urbach.dev/go/color"
)
func BenchmarkRGB(b *testing.B) {
for b.Loop() {
color.RGB(1.0, 1.0, 1.0)
}
}
func BenchmarkLCH(b *testing.B) {
for b.Loop() {
color.LCH(0.5, 0.5, 0.0)
}
}
func BenchmarkPrint(b *testing.B) {
color.Terminal = true
c := color.RGB(1.0, 1.0, 1.0)
for b.Loop() {
c.Print("")
}
}
func BenchmarkPrintRaw(b *testing.B) {
color.Terminal = false
c := color.RGB(1.0, 1.0, 1.0)
for b.Loop() {
c.Print("")
}
}