Newer
Older
ClosedXML / ClosedXML_Tests / Examples / RowsTests.cs
@Francois Botha Francois Botha on 30 May 2017 616 bytes Unknown changes - something to do with line endings?
using ClosedXML_Examples;
using ClosedXML_Examples.Rows;
using NUnit.Framework;

namespace ClosedXML_Tests.Examples
{
    [TestFixture]
    public class RowsTests
    {
        [Test]
        public void RowCells()
        {
            TestHelper.RunTestExample<RowCells>(@"Rows\RowCells.xlsx");
        }

        [Test]
        public void RowCollection()
        {
            TestHelper.RunTestExample<RowCollection>(@"Rows\RowCollection.xlsx");
        }

        [Test]
        public void RowSettings()
        {
            TestHelper.RunTestExample<RowSettings>(@"Rows\RowSettings.xlsx");
        }
    }
}