14 lines
206 B
Go
14 lines
206 B
Go
package barinner_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/goplus/llgo/cl/_testgo/runextest/bar/barinner"
|
|
)
|
|
|
|
func TestBarInner(t *testing.T) {
|
|
if barinner.BarInner() != 2 {
|
|
t.Fatal("BarInner() != 2")
|
|
}
|
|
}
|