Files
llgo/cl/_testgo/runextest/main_test.go
2025-06-25 15:38:20 +08:00

12 lines
112 B
Go

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