Files
llgo/cl/_testgo/runextest/bar/bar_test.go

14 lines
172 B
Go
Raw Normal View History

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