Remove message_test_wrapper for python's message_test.
[google-protobuf.git] / objectivec / Tests / unittest_objc_startup.proto
blob2bf12e436568e0d5ab8ff8e693407b6dcf68af3c
1 // Protocol Buffers - Google's data interchange format
2 // Copyright 2008 Google Inc.  All rights reserved.
3 //
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file or at
6 // https://developers.google.com/open-source/licenses/bsd
8 syntax = "proto2";
10 package objc.protobuf.tests.startup;
11 option objc_class_prefix = "TestObjCStartup";
13 message Message {
14   extensions 1 to max;
17 extend Message {
18   // Singular
19   optional    int32 optional_int32_extension    = 1;
20   repeated    int32 repeated_int32_extension    = 2;
23 message Nested {
24   extend Message {
25     optional string nested_string_extension = 3;
26   }