Пример #1
0
 public void notsupportsTypeXLSXTest()
 {
     CSVParser csvtest = new CSVParser();
           string format = "xlsx ";
           bool expected = false;
           bool actual;
           actual = csvtest.supportsType(format);
           Assert.AreEqual(expected, actual);
 }
Пример #2
0
 public void supportsTypeCSVTest()
 {
     CSVParser csvtest = new CSVParser();
           string format = "csv";
           bool expected = true;
           bool actual;
           actual = csvtest.supportsType(format);
           Assert.AreEqual(expected, actual);
 }