InternalLocationTests.cs 344 B

123456789101112131415
  1. using NUnit.Framework;
  2. using QuestPDF.Elements;
  3. using QuestPDF.UnitTests.TestEngine;
  4. namespace QuestPDF.UnitTests
  5. {
  6. [TestFixture]
  7. public class InternalLocationTests
  8. {
  9. [Test]
  10. public void Measure() => SimpleContainerTests.Measure<SectionLink>();
  11. // TODO: consider tests for the Draw method
  12. }
  13. }