Newer
Older
ClosedXML / ClosedXML_Tests / Examples / RowsTests.cs
@Francois Botha Francois Botha on 23 Oct 2017 783 bytes Save calculated column formula in table field (#528)
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");
        }

        //[Test] // Not working yet
        public void InsertRows()
        {
            TestHelper.RunTestExample<InsertRows>(@"Rows\InsertRows.xlsx");
        }
    }
}