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

14 lines
156 B
Go

package bar_test
import (
"testing"
"github.com/goplus/llgo/test/bar"
)
func TestBar(t *testing.T) {
if bar.Bar() != 2 {
t.Fatal("Bar() != 2")
}
}