object XmlMatchers extends XmlMatchers
Companion object to the XmlMatchers trait for use as an alternative to mixing it in.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- XmlMatchers
- XmlMatchers
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def beXml(expected: Node)(implicit options: DiffOptions = DiffOptions.default): Matcher[Node]
Asserts that two XML documents are equal.
Asserts that two XML documents are equal.
Enables the following syntax:
result should beXml(<example>1</example>)
If unspecified this will use DiffOptions.default during the comparison. This can be overridden with a global implicit of DiffOptions or on an individual basis:
implicit val diffOptions: DiffOptions = DiffOptions(IgnoreNamespace) result should beXml(<example>1</example>) // or result should beXml(<example>1</example>)(DiffOptions.empty)
- Definition Classes
- XmlMatchers
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
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