Hi Lukas,
I didn't need to use XMLUnit.setIgnoreWhitespace(true); in the test,
it appears I just needed to have XMLUnit on the class-path. As I'm
using Maven for this project all I needed to do was to add XMLUnit 1.3
to the dependancies in the POM, and that resolved the whitespace
issue:
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.3</version>
</dependency>
Thanks for you help.
Dan.
On Apr 16, 12:14 pm, Lukáš Křečan <
lu...@krecan.net> wrote:
> Hi,
> try to call this prior executing your test:
>
> XMLUnit.setIgnoreWhitespace(true);
>
> Please let me know if it helps. The same piece of code is invoked
> automatically when creating the ResponseMatcher so it was supposed to
> work out of the box.
> Cheers
> Lukas
>
>
>
>
>
>
>
> > I have just started usingSmockfor testing spring-ws and I'm having a