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

testBytes() private method

private testBytes ( ) : void
return void
        public void testBytes()
        {
            //throw new NotImplementedException();
            Assert.AreEqual(new Schema("bytes"), Schema.Parse("\"bytes\""));
            Assert.AreEqual(new Schema("bytes"), Schema.Parse("{\"type\":\"bytes\"}"));
            check("\"bytes\"", "\"\\u0000ABC\\u00FF\"", new byte[] { 0, 65, 66, 67, 1 });
        }