Beispiel #1
0
 public void AppendNullPathParameter()
 {
     CSVHelper.Append(null, null, null);
 }
Beispiel #2
0
 public void AppendBlankPathParameter()
 {
     CSVHelper.Append(String.Empty, null, null);
 }
Beispiel #3
0
 public void AppendInvalidFile()
 {
     CSVHelper.Append("C:\\", "UnknownFile.csv", new String[0]);
 }
Beispiel #4
0
 public void AppendNullDataParameter()
 {
     CSVHelper.Append("C:\\", "test.csv", null);
 }
Beispiel #5
0
 public void AppendBlankFileParameter()
 {
     CSVHelper.Append("C:\\", String.Empty, null);
 }
Beispiel #6
0
 public void AppendNullFileParameter()
 {
     CSVHelper.Append("C:\\", null, null);
 }
Beispiel #7
0
 public void AppendInvalidPathParameter()
 {
     CSVHelper.Append("D:\\Work\\", null, null);
 }