| 123456789101112131415161718 |
- using QuestPDF.ConformanceTests.TestEngine;
- using QuestPDF.Drawing;
- using QuestPDF.Fluent;
- namespace QuestPDF.ConformanceTests;
- internal class SimpleTableTests : ConformanceTestBase
- {
- protected override Document GetDocumentUnderTest()
- {
- throw new NotImplementedException();
- }
- protected override SemanticTreeNode? GetExpectedSemanticTree()
- {
- throw new NotImplementedException();
- }
- }
|