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