Files
llgo/test/bar/bar_test.go

14 lines
156 B
Go
Raw Normal View History

2025-06-24 15:23:12 +08:00
package bar_test
import (
"testing"
"github.com/goplus/llgo/test/bar"
)
func TestBar(t *testing.T) {
if bar.Bar() != 2 {
t.Fatal("Bar() != 2")
}
}