Jayrock.Json.Conversion.TestJsonMemberNamingConventionAttribute.UnderscorePrefixApplication C# (CSharp) Method

UnderscorePrefixApplication() private method

private UnderscorePrefixApplication ( ) : void
return void
        public void UnderscorePrefixApplication()
        {
            TestNamingCase("FooBarBaz", NamingConvention.Camel, UnderscoreConvention.Prefix, "_FooBarBaz");
            TestNamingCase("FooBarBaz", NamingConvention.Pascal, UnderscoreConvention.Prefix, "_FooBarBaz");
            TestNamingCase("FooBarBaz", NamingConvention.Upper, UnderscoreConvention.Prefix, "_FOOBARBAZ");
            TestNamingCase("FooBarBaz", NamingConvention.Lower, UnderscoreConvention.Prefix, "_foobarbaz");
        }