浏览代码

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

Thomas Van Lenten 6 年之前
父节点
当前提交
24d344c30c
共有 1 个文件被更改,包括 12 次插入0 次删除
  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:
       response.skipped = @"ObjC doesn't support parsing JSON";
       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) {
@@ -112,6 +118,12 @@ static ConformanceResponse *DoTest(ConformanceRequest *request) {
       case WireFormat_Json:
         response.skipped = @"ObjC doesn't support generating JSON";
         break;
+
+      case WireFormat_Jspb:
+        response.skipped =
+            @"ConformanceRequest had a requested_output_format of JSPB WireFormat; that"
+            " isn't supposed to happen with opensource.";
+        break;
     }
   }