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