Files
llgo/_demo/runtest/main_test.go

10 lines
107 B
Go
Raw Normal View History

2024-12-31 10:53:38 +08:00
package main
import "testing"
func TestZoo(t *testing.T) {
if Zoo() != 3 {
t.Fatal("Zoo() != 3")
}
}