I am working on integration tests for a Java web service. The integration test now sends SOAP requests to the server, which are approved through the SoapUI plugin, and for each of the SOAP requests an XML file is created and saved (part of the integration phase).
Is there a plugin that allows me to distinguish between xml files that were output and saved against a similar set of xml files that were created in an earlier run? The idea is to unzip the xml files from the previous release version with the current version to make sure that the expected changes have been made to the xml files.
I hope my question is clear enough. thanks in advance
EDIT: The xml files I would like to compare will be copied to the directory (say target / compare_against) by the person who runs the test. They are not under SCM.
source
share