using QuestPDF.Infrastructure; namespace QuestPDF.LayoutTests.TestEngine; internal class LayoutTestResult { public Size PageSize { get; set; } public ICollection ActualLayout { get; set; } public ICollection ExpectedLayout { get; set; } public class PageLayoutSnapshot { public Size RequiredArea { get; set; } public ICollection MockPositions { get; set; } } public class MockLayoutPosition { public string MockId { get; set; } public Position Position { get; set; } public Size Size { get; set; } } }