Newer
Older
ClosedXML / ClosedXML_Tests / Examples / ImageHandlingTests.cs
@clinchergt clinchergt on 2 May 2017 478 bytes Add support for other image formats
using ClosedXML_Examples;
using NUnit.Framework;

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

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