示例#1
0
 public void SplitMemberNameIntoWordsTest()
 {
     string name = "CurrentUserOid";
       Parser parser = new Parser();
       IList<string> wordsList = parser.SplitMemberNameIntoWords(name);
       IList<string> expected = new List<string>
                          {
                            "Current",
                            "User",
                            "Oid"
                          };
       Assert.IsTrue(expected.SequenceEqual(wordsList));
 }