using ClosedXML_Examples; using ClosedXML_Examples.Rows; using NUnit.Framework; namespace ClosedXML_Tests.Examples { [TestFixture] public class RowsTests { [Test] public void RowCells() { TestHelper.RunTestExample(@"Rows\RowCells.xlsx"); } [Test] public void RowCollection() { TestHelper.RunTestExample(@"Rows\RowCollection.xlsx"); } [Test] public void RowSettings() { TestHelper.RunTestExample(@"Rows\RowSettings.xlsx"); } //[Test] // Not working yet public void InsertRows() { TestHelper.RunTestExample(@"Rows\InsertRows.xlsx"); } } }