Files
QuestPDF/Source/QuestPDF.UnitTests/ExternalLinkTests.cs
T
2023-01-06 00:45:12 +01:00

15 lines
338 B
C#

using NUnit.Framework;
using QuestPDF.Elements;
using QuestPDF.UnitTests.TestEngine;
namespace QuestPDF.UnitTests
{
[TestFixture]
public class ExternalLinkTests
{
[Test]
public void Measure() => SimpleContainerTests.Measure<Hyperlink>();
// TODO: consider tests for the Draw method
}
}