Parse XML and run test

Hi everybody,
For a java project, we’ve successfully used the Katalon IDE to export tests in many formats.
We chose the XML format, but now we have some questions:

  1. How can we run a junit test in XML format? Any class to use?
  2. Is there a xml parser inside katalon or as external library to load and excecute a XML test?

TIA
Marco

You can execute JUnit in Katalon Studio. See


The first candidate would be XmlSlurper, which is built-in in the Groovy language. You would not need anything else,
http://docs.groovy-lang.org/latest/html/api/groovy/util/XmlSlurper.html

Thanks for the answer.
Actually we store xml files inside a Database and we run them inside a Java Spring Layer.
We should be able to load xml file from database and run these test easly.
Is there a solution?