Files
llgo/_demo/runtest/main_test.go
2025-02-13 15:47:13 +08:00

10 lines
107 B
Go

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