Tool/software: Code Composer Studio
I have created a DSS script which sets a break-point, grabs a variables value, and compares this to an expected value. The information will be saved to an xml file (I plan on creating a JUnit xml output file - Jenkins understands) such as:
<testsuites name="testsuitesname">
<testsuite name="testsuitename">
<testcase classname="packagename.classname" name="testname">
blabla
</testcase>
</testsuite>
</testsuites>
I used Jenkins along with the plugin for the Unit Testing tool VectorCAST. I want to do something similar with the DSS script files by producing xml results data (similar to the template above JUnit understands). Since DSS is used to automate testing, I assume there would be a plugin or some examples I could follow. Any suggestions with the approach? My scripts work fine from a DOS command line using something similar to c:> dss PROJ-TCN-001.js
If there is NOT a plugin - how would I set up the Jenkins Build and Post-Build batch commands to call DSS properly?
