SimpleTableTests.cs 424 B

123456789101112131415161718
  1. using QuestPDF.ConformanceTests.TestEngine;
  2. using QuestPDF.Drawing;
  3. using QuestPDF.Fluent;
  4. namespace QuestPDF.ConformanceTests;
  5. internal class SimpleTableTests : ConformanceTestBase
  6. {
  7. protected override Document GetDocumentUnderTest()
  8. {
  9. throw new NotImplementedException();
  10. }
  11. protected override SemanticTreeNode? GetExpectedSemanticTree()
  12. {
  13. throw new NotImplementedException();
  14. }
  15. }