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