From 500caaeda74dd9c660279036293f4b2997cf0b03 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Sat, 9 Sep 2017 09:42:37 +0200 Subject: Add vendor --- vendor/github.com/llgcode/draw2d/test_test.go | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 vendor/github.com/llgcode/draw2d/test_test.go (limited to 'vendor/github.com/llgcode/draw2d/test_test.go') diff --git a/vendor/github.com/llgcode/draw2d/test_test.go b/vendor/github.com/llgcode/draw2d/test_test.go new file mode 100644 index 0000000..33b8937 --- /dev/null +++ b/vendor/github.com/llgcode/draw2d/test_test.go @@ -0,0 +1,30 @@ +// Package draw2d_test gives test coverage with the command: +// go test -cover ./... | grep -v "no test" +package draw2d_test + +import ( + "image" + "testing" + + "github.com/llgcode/draw2d" + "github.com/llgcode/draw2d/draw2dimg" +) + +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 + output, err := draw(gc, "png") + if err != nil { + t.Errorf("Drawing %q failed: %v", output, err) + return + } + // Save to png + err = draw2dimg.SaveToPngFile(output, dest) + if err != nil { + t.Errorf("Saving %q failed: %v", output, err) + } +} -- cgit v1.2.3