Newer
Older
ClosedXML / ClosedXML_Tests / Examples / TablesTests.cs
@Francois Botha Francois Botha on 6 Sep 2017 628 bytes Allow totals row when resizing tables
using ClosedXML_Examples.Tables;
using NUnit.Framework;

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

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

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