2015-07-01 08:34:23 +00:00
|
|
|
// See also test_test.go
|
|
|
|
|
2015-07-06 22:25:24 +00:00
|
|
|
package draw2dpdf_test
|
2015-06-30 23:11:20 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-07-06 22:07:44 +00:00
|
|
|
"github.com/llgcode/draw2d"
|
2015-07-10 00:07:18 +00:00
|
|
|
"github.com/llgcode/draw2d/samples/android"
|
|
|
|
"github.com/llgcode/draw2d/samples/frameimage"
|
|
|
|
"github.com/llgcode/draw2d/samples/gopher"
|
|
|
|
"github.com/llgcode/draw2d/samples/helloworld"
|
|
|
|
"github.com/llgcode/draw2d/samples/line"
|
|
|
|
"github.com/llgcode/draw2d/samples/linecapjoin"
|
|
|
|
"github.com/llgcode/draw2d/samples/postscript"
|
2015-06-30 23:11:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSampleAndroid(t *testing.T) {
|
|
|
|
test(t, android.Main)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSampleGopher(t *testing.T) {
|
|
|
|
test(t, gopher.Main)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSampleHelloWorld(t *testing.T) {
|
|
|
|
// Set the global folder for searching fonts
|
2015-07-10 00:07:18 +00:00
|
|
|
// The pdf backend needs for every ttf file its corresponding
|
|
|
|
// json/.z file which is generated by gofpdf/makefont.
|
|
|
|
draw2d.SetFontFolder("../resource/font")
|
2015-06-30 23:11:20 +00:00
|
|
|
test(t, helloworld.Main)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSampleFrameImage(t *testing.T) {
|
|
|
|
test(t, frameimage.Main)
|
|
|
|
}
|
2015-07-01 08:34:23 +00:00
|
|
|
|
|
|
|
func TestSampleLine(t *testing.T) {
|
|
|
|
test(t, line.Main)
|
|
|
|
}
|
2015-07-01 12:44:51 +00:00
|
|
|
|
|
|
|
func TestSampleLineCap(t *testing.T) {
|
|
|
|
test(t, linecapjoin.Main)
|
|
|
|
}
|
2015-07-01 13:15:37 +00:00
|
|
|
|
|
|
|
func TestSamplePostscript(t *testing.T) {
|
|
|
|
test(t, postscript.Main)
|
|
|
|
}
|