(t *testing.T)
| 318 | } |
| 319 | |
| 320 | func TestRefValueToValue_Error(t *testing.T) { |
| 321 | _, err := RefValueToValue(types.NewErr("test error")) |
| 322 | if err == nil { |
| 323 | t.Error("RefValueToValue(err) should return error") |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | func TestExprValueAsAlphaProto(t *testing.T) { |
| 328 | // Exercise the ExprValueAsAlphaProto wrapper (0% coverage) |
nothing calls this directly
no test coverage detected