I've got a couple of txt files that are generated from our application for automated testing purposes. Inside these text files there are 3 possible values: pass, failed and crashed.
Based on these results I have to create some Jenkins reports at the end of the automated tests, in order to have an idea about what is going on. How many tests passed/failed, using charts and so on.
I do know that the best way to do this is using the JUnit Report plugin, but that would mean I have to convert all these text files into one XML file.
How could I do this the easiest way?
TL;DR How to parse values from multiple text files inside a xml file supported by Jenkins' JUnit Report plugin