(t *testing.T)
| 336 | } |
| 337 | |
| 338 | func TestRefValToExprValue_Wrappers(t *testing.T) { |
| 339 | // Exercise the RefValToExprValue wrapper (0% coverage) |
| 340 | res, err := RefValToExprValue(types.String("hello")) |
| 341 | if err != nil { |
| 342 | t.Fatalf("RefValToExprValue() failed: %v", err) |
| 343 | } |
| 344 | if res.GetValue() == nil { |
| 345 | t.Error("RefValToExprValue() returned nil value") |
| 346 | } |
| 347 | } |
nothing calls this directly
no test coverage detected