public void TestMethod4()
 {
     Assert.AreEqual("building PROPERTY", CamelCaseConverter.ToCamelCaseRight("BUILDING PROPERTY"));
 }
 public void TestMethod1()
 {
     Assert.AreEqual("building", CamelCaseConverter.ToCamelCaseRight("BUILDING"));
 }
 public void TestMethod3()
 {
     Assert.AreEqual("building Property", CamelCaseConverter.ToCamelCaseRight("Building Property"));
 }