You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Test refactorings for improved code coverage (#976)
* Test refactorings for improved code coverage
Added .runsettings file for configuring code coverage, separated OpenXmlImporter and OpenXmlExporter tests, added new tests for retrieving sheet informations, sheet dimensions and column names, added new queryrange tests, added new addpicture test, removed obsolete FileHelper test utility class
* Expanded tests to run on NET8 and NET9 and removed superfluous excel test files
* Minor corrections
/// Queries a specific rectangular region within an worksheet using index-based coordinates.
112
+
/// Queries a specific rectangular region within an worksheet using cell-based coordinates.
113
113
/// </summary>
114
114
/// <param name="path">The path to the Excel document.</param>
115
115
/// <param name="hasHeaderRow">If true, the first row within the range is used as column headers for dynamic object properties. Default is false.</param>
/// Queries a specific rectangular region within an worksheet using index-based coordinates.
134
+
/// Queries a specific rectangular region within an worksheet using cell-based coordinates.
135
135
/// </summary>
136
136
/// <param name="stream">The stream containing the Excel file data. The stream position is not reset after reading.</param>
137
137
/// <param name="hasHeaderRow">If true, the first row within the range is used as column headers for dynamic object properties. Default is false.</param>
@@ -375,7 +375,7 @@ public async Task<List<SheetInfo>> GetSheetInformationsAsync(string path, Cancel
0 commit comments