public void NotRootLevelFieldName_ReturnLastPointSplitedName_GetPersistentFieldNameTest()
        {
            const string expected = "Title";
            var          helper   = new VirtualContentHelper();
            var          actual   = helper.GetPersistentFieldName("m1.m2.m3.m4.Title");

            Assert.AreEqual(expected, actual);
        }
        public void RootLevelFieldName_ReturnSameName_GetPersistentFieldNameTest()
        {
            const string expected = "Title";
            var          helper   = new VirtualContentHelper();
            var          actual   = helper.GetPersistentFieldName("Title");

            Assert.AreEqual(expected, actual);
        }