Started the testing framework.

This commit is contained in:
Pietro Gagliardi 2015-12-11 22:58:21 -05:00
parent 8f3452baa0
commit eb3a833dec
1 changed files with 15 additions and 0 deletions

15
zz_test.go Normal file
View File

@ -0,0 +1,15 @@
// 11 december 2015
package ui
import "testing"
func TestIt(t *testing.T) {
err := Main(func() {
t.Log("we're here")
Quit()
})
if err != nil {
t.Fatal(err)
}
}