We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
OpenApiPaths
To repro:
In the OpenApiDocumentTest.cs, add the below test:
OpenApiDocumentTest.cs
[Fact] private void ShouldCopyDocument() { var doc = new OpenApiDocument(AdvancedDocument); Assert.NotEmpty(doc.Paths); Assert.Equal(2, doc.Paths.Count); }
Note that the above test fails on both assertions.