(t *testing.T)
| 682 | } |
| 683 | |
| 684 | func TestProtoToReferenceInfoError(t *testing.T) { |
| 685 | out, err := ast.ProtoToReferenceInfo(&exprpb.Reference{Value: &exprpb.Constant{}}) |
| 686 | if err == nil { |
| 687 | t.Errorf("ProtoToReferenceInfo() got %v, wanted error", out) |
| 688 | } |
| 689 | } |
| 690 | |
| 691 | func TestConvertVal(t *testing.T) { |
| 692 | tests := []ref.Val{ |
nothing calls this directly
no test coverage detected