Avro.Test.TestProtocol.Test C# (CSharp) Метод

Test() приватный Метод

private Test ( ) : void
Результат void
        public void Test()
        {
            ExampleProtocol[] EXAMPLES = new ExampleProtocol[]{
  new ExampleProtocol(@"{
  ""namespace"": ""com.acme"",
  ""schema"": ""HelloWorld"",

  ""types"": [
    {""name"": ""Greeting"", ""type"": ""record"", ""fields"": [
      {""name"": ""message"", ""type"": ""string""}]},
    {""name"": ""Curse"", ""type"": ""error"", ""fields"": [
      {""name"": ""message"", ""type"": ""string""}]}
  ],

  ""messages"": {
    ""hello"": {
      ""request"": [{""name"": ""greeting"", ""type"": ""Greeting"" }],
      ""response"": ""Greeting"",
      ""errors"": [""Curse""]
    }
  }
}", true),
  new ExampleProtocol(@" 
{""namespace"": ""org.apache.avro.test"",
 ""schema"": ""Simple"",

 ""types"": [
     {""name"": ""Kind"", ""type"": ""enum"", ""symbols"": [""FOO"",""BAR"",""BAZ""]},

     {""name"": ""MD5"", ""type"": ""fixed"", ""size"": 16},

     {""name"": ""TestRecord"", ""type"": ""record"",
      ""fields"": [
          {""name"": ""name"", ""type"": ""string"", ""order"": ""ignore""},
          {""name"": ""kind"", ""type"": ""Kind"", ""order"": ""descending""},
          {""name"": ""hash"", ""type"": ""MD5""}
      ]
     },

     {""name"": ""TestError"", ""type"": ""error"", ""fields"": [
         {""name"": ""message"", ""type"": ""string""}
      ]
     }

 ],

 ""messages"": {

     ""hello"": {
         ""request"": [{""name"": ""greeting"", ""type"": ""string""}],
         ""response"": ""string""
     },

     ""echo"": {
         ""request"": [{""name"": ""record"", ""type"": ""TestRecord""}],
         ""response"": ""TestRecord""
     },

     ""add"": {
         ""request"": [{""name"": ""arg1"", ""type"": ""int""}, {""name"": ""arg2"", ""type"": ""int""}],
         ""response"": ""int""
     },

     ""echoBytes"": {
         ""request"": [{""name"": ""data"", ""type"": ""bytes""}],
         ""response"": ""bytes""
     },

     ""error"": {
         ""request"": [],
         ""response"": ""null"",
         ""errors"": [""TestError""]
     }
 }

}
    """, true),

       new ExampleProtocol(@"{""namespace"": ""org.apache.avro.test.namespace"",
 ""schema"": ""TestNamespace"",

 ""types"": [
     {""name"": ""org.apache.avro.test.util.MD5"", ""type"": ""fixed"", ""size"": 16},
     {""name"": ""TestRecord"", ""type"": ""record"",
      ""fields"": [ {""name"": ""hash"", ""type"": ""org.apache.avro.test.util.MD5""} ]
     },
     {""name"": ""TestError"", ""namespace"": ""org.apache.avro.test.errors"",
      ""type"": ""error"", ""fields"": [ {""name"": ""message"", ""type"": ""string""} ]
     }
 ],

 ""messages"": {
     ""echo"": {
         ""request"": [{""name"": ""record"", ""type"": ""TestRecord""}],
         ""response"": ""TestRecord""
     },

     ""error"": {
         ""request"": [],
         ""response"": ""null"",
         ""errors"": [""org.apache.avro.test.errors.TestError""]
     }

 }

}", true), 

  new ExampleProtocol(@"{""namespace"": ""org.apache.avro.test"",
 ""schema"": ""BulkData"",

 ""types"": [],

 ""messages"": {

     ""Read"": {
         ""request"": [],
         ""response"": ""bytes""
     },

     ""write"": {
         ""request"": [ {""name"": ""data"", ""type"": ""bytes""} ],
         ""response"": ""null""
     }

 }

}", true)
            };


            testExamples(EXAMPLES);

        }