aboutsummaryrefslogtreecommitdiff
path: root/csharp/protos
diff options
context:
space:
mode:
authorJon Skeet <jonskeet@google.com>2015-05-13 17:34:02 +0100
committerJon Skeet <jonskeet@google.com>2015-05-13 17:34:02 +0100
commit998b5ba20d4bacb25c90f2afaddac3900a06d61b (patch)
tree0939d22066a16cc9e78417b9a1fe95bffc5eeb61 /csharp/protos
parent98de125a7caaf25c83e7d4988ed7f69587925aa8 (diff)
downloadprotobuf-998b5ba20d4bacb25c90f2afaddac3900a06d61b.tar.gz
protobuf-998b5ba20d4bacb25c90f2afaddac3900a06d61b.tar.bz2
protobuf-998b5ba20d4bacb25c90f2afaddac3900a06d61b.zip
Remove the C#-specific field_presence_test.proto, using unittest_no_field_presence.proto instead.
This is the start of establishing a C# namespace of "Google.ProtocolBuffers.TestProtos.Proto3" for proto3-syntax protos. We could optionally split the directory structure as well into Proto2 and Proto3 for clarity.
Diffstat (limited to 'csharp/protos')
-rw-r--r--csharp/protos/google/protobuf/field_presence_test.proto21
1 files changed, 0 insertions, 21 deletions
diff --git a/csharp/protos/google/protobuf/field_presence_test.proto b/csharp/protos/google/protobuf/field_presence_test.proto
deleted file mode 100644
index 14d91312..00000000
--- a/csharp/protos/google/protobuf/field_presence_test.proto
+++ /dev/null
@@ -1,21 +0,0 @@
-syntax = "proto3";
-
-package Google.ProtocolBuffers.TestProtos.FieldPresence;
-
-// TODO(jieluo): Add repeated fields, oneof, maps to TestAllTypes
-message TestAllTypes {
- enum NestedEnum {
- FOO = 0;
- BAR = 1;
- BAZ = 2;
- }
- message NestedMessage {
- optional int32 value = 1;
- }
-
- optional int32 optional_int32 = 1;
- optional string optional_string = 2;
- optional bytes optional_bytes = 3;
- optional NestedEnum optional_nested_enum = 4;
- optional NestedMessage optional_nested_message = 5;
-}