Skip to content

XMLUnit.NET 2.0.0-alpha-03

Pre-release
Pre-release
Compare
Choose a tag to compare
@bodewig bodewig released this 13 Dec 05:36
· 167 commits to master since this release

This is the second alpha release of XMLUnit.NET 2.0.0.

The implementation is considered stable enough for a production release. This is an alpha release as we need more people to try out the API in order to call it final.

Changes since 2.0.0-alpha-02

  • fixed the nuget package name of the core library to now use
    XMLUnit.Core
  • switched core tests to use to NUnit 3.x and provided a new library
    to support NUnit 3.x constraints.
    #19 by
    @e-tobi
  • The XMLUnit.Constraints nuget package has been replaced with
    XMLUnit.NUnit2.Constraints and XMLUnit.NUnit3.Constraints
  • The XMLUnit.NUnit2.Constraints nuget package now depends on NUNit 2.6.4 -
    which it has been compiled against - rather than 2.5.10.
  • added new overloads to IXPathEngine
  • fixed the XPath context used by the ByXPath element selector so
    that "." now refers to the current element.
    Issue xmlunit/#39
  • ElementSelectors.ConditionalBuilder now stops at the first
    predicate returning true, even if the associated ElementSelector
    returns false.
    Issue xmlunit/#40