Some useful Org.XmlUnit.ISource implementations.
Type | Description |
---|---|
AbstractSource | Provides a base implementation for the different concrete ISource implementations. |
ByteArraySource | Source that provides XML from a byte array. |
CommentLessSource | ISource implementation that is obtained from a different source by stripping all comments. |
DOMSource | ISource implementation encapsulating a DOM Node. |
ElementContentWhitespaceStrippedSource | A source that is obtained from a different source by removing all text nodes that only contain whitespace. |
LinqSource | ISource implementation encapsulating a System.Xml.Linq XNode. |
NormalizedSource | Performs XML normalization on a given ISource or DOM Node. |
ReaderSource | ISource implementation encapsulating a plain XmlReader. |
StreamSource | ISource implementation encapsulating data read from a stream or a reader. |
StringSource | Source that provides XML from a string. |
WhitespaceNormalizedSource | A source that is obtained from a different source by removing all empty text nodes and normalizing the non-empty ones. |
WhitespaceStrippedSource | A source that is obtained from a different source by removing all empty text nodes and trimming the non-empty ones. |