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

14 lines
172 B
Go

package foo_test
import (
"testing"
"github.com/goplus/llgo/cl/_testgo/runextest/foo"
)
func TestFoo(t *testing.T) {
if foo.Foo() != 1 {
t.Fatal("Foo() != 1")
}
}