Files
llgo/cl/_testgo/runextest/main_test.go

12 lines
112 B
Go
Raw Normal View History

package main
import (
"testing"
)
func TestZoo(t *testing.T) {
if Zoo() != 3 {
t.Fatal("Zoo() != 3")
}
}