Skip to content

Commit

Permalink
ZEPHYR-27981
Browse files Browse the repository at this point in the history
  • Loading branch information
pv-smartbear committed Dec 13, 2019
1 parent d936c31 commit adcbe03
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -561,6 +561,10 @@ public Map<TCRCatalogTreeTestcase, Boolean> genericParserXML(Map<String, TCRCata
String testcaseJson = new Gson().toJson(testcaseMap);
Testcase testcase = new Gson().fromJson(testcaseJson, Testcase.class);

if(testcase.getName().isEmpty()) {
continue;
}

if(dataMap.containsKey("skipTestcaseNames")) {
String[] skipTestcaseNames = dataMap.get("skipTestcaseNames").toString().split(",");
for (String testcaseName : skipTestcaseNames) {
Expand Down

0 comments on commit adcbe03

Please sign in to comment.