We are using bamboo to pretty-print junit output for tests, and I would like to add some version information to the report. Is there a way to do this? I use following params:
--plugin junit:./output.xml --glue com.package.integrationtest
--plugin com.package.util.LogbackFormatter
I try to write the version in a step using the following:
stepdefs.scenario.write(String.format("version: %s",stepdefs.version);
This spits the string to the formatter (which redirects to logback) but it does not put the string in the junit formatter. Is there a way to put the string in the junit output?
Use jUnit annotation method.