コード例 #1
0
ファイル: egl_test.go プロジェクト: remogatto/egl
func TestEGL(t *testing.T) {
	pt.Run(
		t,
		new(testInitEGLSuite),
		new(testCreateEGLContextSuite),
	)
}
コード例 #2
0
ファイル: runner.go プロジェクト: remogatto/gltext
func main() {
	runtime.LockOSThread()
	defer runtime.UnlockOSThread()
	defer glfw.Terminate()

	mandala.Verbose = true

	if !glfw.Init() {
		panic("Can't init glfw!")
	}

	// Enable OpenGL ES 2.0.
	glfw.WindowHint(glfw.ClientApi, glfw.OpenglEsApi)
	glfw.WindowHint(glfw.ContextVersionMajor, 2)
	window, err := glfw.CreateWindow(Width, Height, "gltext black-box testing", nil, nil)
	if err != nil {
		panic(err)
	}

	glfw.SwapInterval(0)
	mandala.Init(window)

	go prettytest.Run(new(testing.T), testlib.NewTestSuite(outputPath))

	for !window.ShouldClose() {
		glfw.WaitEvents()
	}
}
コード例 #3
0
ファイル: runner.go プロジェクト: kebo/gorgasm
func main() {
	runtime.LockOSThread()
	defer runtime.UnlockOSThread()
	defer glfw.Terminate()

	gorgasm.Verbose = true

	if !glfw.Init() {
		panic("Can't init glfw!")
	}

	// Enable OpenGL ES 2.0.
	glfw.WindowHint(glfw.ClientApi, glfw.OpenglEsApi)
	glfw.WindowHint(glfw.ContextVersionMajor, 2)
	window, err := glfw.CreateWindow(testlib.Width, testlib.Height, "Gorgasm Test", nil, nil)
	if err != nil {
		panic(err)
	}

	gorgasm.Init(window)

	go prettytest.Run(new(testing.T), testlib.NewTestSuite())

	for !window.ShouldClose() {
		glfw.WaitEvents()
	}
}
コード例 #4
0
ファイル: console_test.go プロジェクト: remogatto/clingon
func TestConsole(t *testing.T) {
	pt.Run(
		t,
		new(consoleTestSuite),
	)
}
コード例 #5
0
ファイル: json_test.go プロジェクト: kissthink/gobuild2
func TestRunner(t *testing.T) {
	prettytest.Run(
		t,
		new(testSuite),
	)
}
コード例 #6
0
func TestRunner(t *testing.T) {
	prettytest.Run(t, new(mySuite))
}
コード例 #7
0
func TestApplication(t *testing.T) {
	pt.Run(t, new(basicTestSuite), new(errorTestSuite))
}
コード例 #8
0
ファイル: egl_test.go プロジェクト: remogatto/videocore
func TestEGL(t *testing.T) {
	prettytest.Run(
		t,
		new(testSuite),
	)
}
コード例 #9
0
ファイル: base_test.go プロジェクト: nelsam/atomicgames
func TestDatastoreSuite(t *testing.T) {
	prettytest.Run(t, new(datastoreTestSuite))
}
コード例 #10
0
ファイル: imagetest_test.go プロジェクト: remogatto/imagetest
func TestCompare(t *testing.T) {
	pt.Run(t, new(testSuite))
}