Files
llgo/cl/_testgo/runextest/foo/foo_test.go

14 lines
172 B
Go
Raw Normal View History

2025-06-24 15:23:12 +08:00
package foo_test
import (
"testing"
"github.com/goplus/llgo/cl/_testgo/runextest/foo"
2025-06-24 15:23:12 +08:00
)
func TestFoo(t *testing.T) {
if foo.Foo() != 1 {
t.Fatal("Foo() != 1")
}
}