CGH.Inflector.Tests.PascalizeAndCamelizeTests.PascalizeAndCamelizeTests C# (CSharp) Method

PascalizeAndCamelizeTests() public method

public PascalizeAndCamelizeTests ( ) : Microsoft.VisualStudio.TestTools.UnitTesting
return Microsoft.VisualStudio.TestTools.UnitTesting
        public PascalizeAndCamelizeTests()
        {
            TestData.Add("customer", "Customer");
            TestData.Add("CUSTOMER", "CUSTOMER");
            TestData.Add("CUStomer", "CUStomer");
            TestData.Add("customer_name", "CustomerName");
            TestData.Add("customer_first_name", "CustomerFirstName");
            TestData.Add("customer_first_name_goes_here", "CustomerFirstNameGoesHere");
            TestData.Add("customer name", "Customer name");
        }