Files
llgo/test/foo/foo_test.go
2025-06-24 16:34:33 +08:00

14 lines
156 B
Go

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