using ClosedXML.Excel; using JdeScoping.ExcelIO.Tests.Fixtures; using Shouldly; using Xunit; namespace JdeScoping.ExcelIO.Tests.Integration; public class LargeDataSetTests : IClassFixture { private readonly XLWorkbook _workbook; public LargeDataSetTests(LargeDataSetFixture fixture) { _workbook = fixture.Workbook; } [Fact] public void TableRowCount_Is1001() { var sheet = _workbook.Worksheet("Search Results"); var table = sheet.Tables.First(); table.RowCount().ShouldBe(1001); // 1 header + 1000 data rows } }