This repository has been archived on 2024-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
captcha/hsva_test.go

11 lines
124 B
Go
Raw Normal View History

package captcha
import (
"image/color"
"testing"
)
func TestHSVAInterface(t *testing.T) {
var _ color.Color = hsva{}
}