Avro.Test.TestSchema2.testArray C# (CSharp) Method

testArray() private method

private testArray ( ) : void
return void
        public void testArray()
        {
            String json = "{\"type\":\"array\", \"items\": \"long\"}";
            Schema schema = Schema.Parse(json);
            //GenericArray<long> array = new GenericData.Array<long>(1, schema);
            //array.Add(1L);
            //check(json, "[1]", array);
            //checkParseError("{\"type\":\"array\"}");      // items required
        }