Avro.Test.TestSchema.testMap C# (CSharp) Method

testMap() private method

private testMap ( string s, string value ) : void
s string
value string
return 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());
        }