CGH.Inflector.Tests.UncapitalizeTests.UncapitalizeTests C# (CSharp) Метод

UncapitalizeTests() публичный Метод

public UncapitalizeTests ( ) : Microsoft.VisualStudio.TestTools.UnitTesting
Результат Microsoft.VisualStudio.TestTools.UnitTesting
        public UncapitalizeTests()
        {
            //Just lowers the first char and leaves the rest alone
            TestData.Add("some title", "some title");
            TestData.Add("some Title", "some Title");
            TestData.Add("SOMETITLE", "sOMETITLE");
            TestData.Add("someTitle", "someTitle");
            TestData.Add("some title goes here", "some title goes here");
            TestData.Add("some TITLE", "some TITLE");
        }