package compare
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- sealed trait XmlDiff extends AnyRef
Results of a comparison between XML documents.
Results of a comparison between XML documents. Can be either XmlEqual or XmlDiffers (with details of the differences).
- case class XmlDiffers(reason: String, left: Any, right: Any, failurePath: Seq[String]) extends XmlDiff with Product with Serializable
Result of an unsuccessful comparison between XML documents.
Result of an unsuccessful comparison between XML documents.
- reason
descriptive reason for the comparison failing.
- left
the left-hand value in the failed comparison.
- right
the right-hand value in the failed comparison.
- failurePath
path to the failed node.
Value Members
- object XmlCompare
Utility for comparing XML documents.
- object XmlEqual extends XmlDiff
Result of a successful comparison between XML documents.
This is the documentation for the scala-xml-compare project.
The main compare package contains utilities for comparing XML documents and generating diffs.
The following test frameworks are supported:
xml-scalatest
xml-specs2