package huecolor_test import ( "testing" "git.aiterp.net/lucifer/lucifer/internal/huecolor" ) func BenchmarkConvert(b *testing.B) { for n := 0; n < b.N; n++ { x, y := huecolor.ConvertXY(0.96, 0.04, 0.07) if x < 0 && y < 0 { b.Fail() } } }