in common/src/jetbrains/buildServer/xmlReportPlugin/XmlReportPluginUtil.java [19:36]
static {
final Map<String, String> reportTypes = new HashMap<String, String>();
reportTypes.put("junit", "Ant JUnit");
reportTypes.put("nunit", "NUnit");
reportTypes.put("surefire", "Surefire");
reportTypes.put("findBugs", "FindBugs");
reportTypes.put("pmd", "PMD");
reportTypes.put("checkstyle", "Checkstyle");
reportTypes.put("pmdCpd", "PMD CPD");
reportTypes.put("mstest", "MSTest");
reportTypes.put("vstest", "VSTest");
reportTypes.put("trx", "TRX");
reportTypes.put("gtest", "Google Test");
reportTypes.put("jslint", "JSLint");
reportTypes.put("ctest", "CTest");
reportTypes.put("testng", "TestNG");
SUPPORTED_REPORT_TYPES = Collections.unmodifiableMap(reportTypes);
}