public void TestFormatCsvHeaders() { var testInput = new string[] { "S. No:", "Screen / Sub Tab", "Field Name", "Section", "Functionality", "Type", "Functionality", "Type", "WE Mapping", "Required ?", "Comments" }; var testResult = Etc.FormatCsvHeaders(testInput); Assert.IsNotNull(testResult); Assert.AreNotEqual(0, testResult.Length); foreach (var tr in testResult) { Console.WriteLine(tr); } }