Avro.Test.TestSchema2.testBytes C# (CSharp) Méthode

testBytes() private méthode

private testBytes ( ) : void
Résultat 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 });
        }