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

14 lines
172 B
Go

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