draw2d/test_test.go

31 lines
747 B
Go
Raw Permalink Normal View History

// Package draw2d_test gives test coverage with the command:
// go test -cover ./... | grep -v "no test"
package draw2d_test
import (
"image"
"testing"
2015-07-06 22:07:44 +00:00
"github.com/llgcode/draw2d"
"github.com/llgcode/draw2d/draw2dimg"
)
2015-07-07 21:35:03 +00:00
type sample func(gc draw2d.GraphicContext, ext string) (string, error)
func test(t *testing.T, draw sample) {
// Initialize the graphic context on an RGBA image
dest := image.NewRGBA(image.Rect(0, 0, 297, 210.0))
gc := draw2dimg.NewGraphicContext(dest)
// Draw Android logo
2015-07-10 00:07:18 +00:00
output, err := draw(gc, "png")
if err != nil {
2015-07-10 00:07:18 +00:00
t.Errorf("Drawing %q failed: %v", output, err)
return
}
// Save to png
err = draw2dimg.SaveToPngFile(output, dest)
if err != nil {
2015-07-10 00:07:18 +00:00
t.Errorf("Saving %q failed: %v", output, err)
}
}