test(build):collect llgo test ./... output to test

This commit is contained in:
luoliwoshang
2025-06-25 14:46:44 +08:00
parent 3df783de13
commit 6e8f3d1d19
12 changed files with 62 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
package main
import (
"testing"
)
func TestZoo(t *testing.T) {
if Zoo() != 3 {
t.Fatal("Zoo() != 3")
}
}