|
@@ -7,8 +7,7 @@ public class ReaderTests
|
|
private const string RegularFile = "testFiles/first.xlsx";
|
|
private const string RegularFile = "testFiles/first.xlsx";
|
|
private const string HiddenFile = "testFiles/hidden.xlsx";
|
|
private const string HiddenFile = "testFiles/hidden.xlsx";
|
|
private const string FilteredFile = "testFiles/filtered.xlsx";
|
|
private const string FilteredFile = "testFiles/filtered.xlsx";
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ private const string DifficultFile = "testFiles/columnsOnTheLeftHeaderNotFirstRow.xlsx";
|
|
|
|
|
|
[Fact]
|
|
[Fact]
|
|
public void Read()
|
|
public void Read()
|
|
@@ -43,4 +42,12 @@ public class ReaderTests
|
|
Assert.NotEmpty(resultsFiltered);
|
|
Assert.NotEmpty(resultsFiltered);
|
|
Assert.NotEqual(results.Length, resultsFiltered.Length);
|
|
Assert.NotEqual(results.Length, resultsFiltered.Length);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ [Fact]
|
|
|
|
+ public void ReadDifficult()
|
|
|
|
+ {
|
|
|
|
+ var reader = new ExcelReader(DifficultFile);
|
|
|
|
+ var results = reader.Read<Test>().ToArray();
|
|
|
|
+ Assert.NotEmpty(results);
|
|
|
|
+ }
|
|
}
|
|
}
|