Avro.Test.TestSchema.testMap C# (CSharp) 메소드

testMap() 개인적인 메소드

private testMap ( string s, string value ) : void
s string
value string
리턴 void
        public void testMap(string s, string value)
        {
            Schema sc = Schema.Parse(s);
            Assert.AreEqual(Schema.Type.MAP, sc.type);
            MapSchema ms = sc as MapSchema;
            Assert.AreEqual(value, ms.valueSchema.GetName());
        }