[sinttest] Improve status output

This commit is contained in:
Florian Schmaus 2020-05-31 21:08:14 +02:00
parent 6c84356278
commit e2a196fa52
1 changed files with 6 additions and 4 deletions

View File

@ -454,10 +454,12 @@ public class SmackIntegrationTestFramework {
} }
sb.append('\n'); sb.append('\n');
} }
sb.append("Available tests: ").append(numberOfAvailableTests) sb.append("Available tests: ").append(numberOfAvailableTests);
.append("(#-classes: ").append(testRunResult.disabledTestClasses.size()) if (!testRunResult.disabledTestClasses.isEmpty() || !testRunResult.disabledTests.isEmpty()) {
.append(", #-tests: ").append(testRunResult.disabledTests.size()) sb.append(" (Disabled ").append(testRunResult.disabledTestClasses.size()).append(" classes")
.append(")\n"); .append(" and ").append(testRunResult.disabledTests.size()).append(" tests");
}
sb.append('\n');
LOGGER.info(sb.toString()); LOGGER.info(sb.toString());
for (PreparedTest test : tests) { for (PreparedTest test : tests) {