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