Files

15 lines
344 B
C#
Raw Permalink 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 InternalLocationTests
{
[Test]
2022-02-21 00:57:53 +01:00
public void Measure() => SimpleContainerTests.Measure<SectionLink>();
2021-09-18 23:40:21 +02:00
// TODO: consider tests for the Draw method
}
}