Packages

package compare

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Package Members

  1. package options

Type Members

  1. 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).

  2. 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

  1. object XmlCompare

    Utility for comparing XML documents.

  2. object XmlEqual extends XmlDiff

    Result of a successful comparison between XML documents.

Ungrouped