Files
QuestPDF/QuestPDF.UnitTests/InternalLinkTests.cs
T

15 lines
341 B
C#
Raw Normal View History

2021-09-18 23:40:21 +02:00
using NUnit.Framework;
using QuestPDF.Elements;
using QuestPDF.UnitTests.TestEngine;
namespace QuestPDF.UnitTests
{
[TestFixture]
public class InternalLinkTests
{
[Test]
public void Measure() => SimpleContainerTests.Measure<InternalLink>();
// TODO: consider tests for the Draw method
}
}