Files
QuestPDF/QuestPDF.UnitTests/InternalLinkTests.cs
2022-02-21 00:57:53 +01:00

15 lines
340 B
C#

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