Browse Source

[ObjC] Add the jspb cases to the switches so they are complete.

Thomas Van Lenten 6 năm trước cách đây
mục cha
commit
24d344c30c
1 tập tin đã thay đổi với 12 bổ sung0 xóa
  1. 12 0
      conformance/conformance_objc.m

+ 12 - 0
conformance/conformance_objc.m

@@ -92,6 +92,12 @@ static ConformanceResponse *DoTest(ConformanceRequest *request) {
     case ConformanceRequest_Payload_OneOfCase_JsonPayload:
     case ConformanceRequest_Payload_OneOfCase_JsonPayload:
       response.skipped = @"ObjC doesn't support parsing JSON";
       response.skipped = @"ObjC doesn't support parsing JSON";
       break;
       break;
+
+    case ConformanceRequest_Payload_OneOfCase_JspbPayload:
+      response.skipped =
+          @"ConformanceRequest had a jspb_payload ConformanceRequest.payload;"
+          " those aren't supposed to happen with opensource.";
+      break;
   }
   }
 
 
   if (testMessage) {
   if (testMessage) {
@@ -112,6 +118,12 @@ static ConformanceResponse *DoTest(ConformanceRequest *request) {
       case WireFormat_Json:
       case WireFormat_Json:
         response.skipped = @"ObjC doesn't support generating JSON";
         response.skipped = @"ObjC doesn't support generating JSON";
         break;
         break;
+
+      case WireFormat_Jspb:
+        response.skipped =
+            @"ConformanceRequest had a requested_output_format of JSPB WireFormat; that"
+            " isn't supposed to happen with opensource.";
+        break;
     }
     }
   }
   }