package wui_ctx import ( "testing" ) func TestWuiCtx(t *testing.T) { ctx_ := GetWuiCtx() if ctx_ == nil { t.Fatalf("wCtx==nil") } ctx_ = GetWuiCtx() if ctx_ == nil { t.Fatalf("wCtx==nil") } }