Newer
Older
ClosedXML / ClosedXML_Tests / Examples / ImageHandlingTests.cs
@Francois Botha Francois Botha on 17 Aug 2017 499 bytes Improve color support and more
#if _NETFRAMEWORK_
using ClosedXML_Examples;
using NUnit.Framework;

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

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