(t *testing.T)
| 325 | } |
| 326 | |
| 327 | func TestExprValueAsAlphaProto(t *testing.T) { |
| 328 | // Exercise the ExprValueAsAlphaProto wrapper (0% coverage) |
| 329 | res, err := ExprValueAsAlphaProto(types.Int(42)) |
| 330 | if err != nil { |
| 331 | t.Fatalf("ExprValueAsAlphaProto() failed: %v", err) |
| 332 | } |
| 333 | if res.GetValue() == nil { |
| 334 | t.Error("ExprValueAsAlphaProto() returned nil value") |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | func TestRefValToExprValue_Wrappers(t *testing.T) { |
| 339 | // Exercise the RefValToExprValue wrapper (0% coverage) |
nothing calls this directly
no test coverage detected