Skip to content

Commit

Permalink
Update XML documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ITaluone committed Apr 6, 2022
1 parent 70ed878 commit d39acb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/_pages/xml.md
Expand Up @@ -13,7 +13,8 @@ Fluent Assertions has support for assertions on several of the LINQ-to-XML class
xDocument.Should().HaveRoot("configuration");
xDocument.Should().HaveElement("settings");
xDocument.Should().HaveSingleElement("settings");
xDocument.Should().HaveElementCount("settings", 1);
xDocument.Should().HaveElement("settings", Exactly.Once());
xDocument.Should().HaveElement("settings", AtLeast.Twice());

xElement.Should().HaveValue("36");
xElement.Should().HaveAttribute("age", "36");
Expand Down

0 comments on commit d39acb7

Please sign in to comment.