Zernit/tests/golang/hellocheck.go

9 lines
133 B
Go
Raw Permalink Normal View History

2020-02-07 18:38:34 +01:00
package main
import "testing"
func TestHelloWorld(t *testing.T) {
if helloworld() != "Hello World!!" {
t.Fatal("Test fail")
}
}