public void AppendNullPathParameter() { CSVHelper.Append(null, null, null); }
public void AppendBlankPathParameter() { CSVHelper.Append(String.Empty, null, null); }
public void AppendInvalidFile() { CSVHelper.Append("C:\\", "UnknownFile.csv", new String[0]); }
public void AppendNullDataParameter() { CSVHelper.Append("C:\\", "test.csv", null); }
public void AppendBlankFileParameter() { CSVHelper.Append("C:\\", String.Empty, null); }
public void AppendNullFileParameter() { CSVHelper.Append("C:\\", null, null); }
public void AppendInvalidPathParameter() { CSVHelper.Append("D:\\Work\\", null, null); }