Zernit/tests/golang/hellocheck.go
2020-02-07 19:23:09 +00:00

9 lines
133 B
Go

package main
import "testing"
func TestHelloWorld(t *testing.T) {
if helloworld() != "Hello World!!" {
t.Fatal("Test fail")
}
}