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

10 lines
106 B
Go
Raw Normal View History

2024-12-31 10:53:38 +08:00
package bar
import "testing"
func TestBar(t *testing.T) {
if Bar() != 2 {
t.Fatal("Bar() != 2")
}
}