mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-21 22:02:06 +01:00
[sinttest] Improve status output
This commit is contained in:
parent
6c84356278
commit
e2a196fa52
1 changed files with 6 additions and 4 deletions
|
@ -454,10 +454,12 @@ public class SmackIntegrationTestFramework {
|
|||
}
|
||||
sb.append('\n');
|
||||
}
|
||||
sb.append("Available tests: ").append(numberOfAvailableTests)
|
||||
.append("(#-classes: ").append(testRunResult.disabledTestClasses.size())
|
||||
.append(", #-tests: ").append(testRunResult.disabledTests.size())
|
||||
.append(")\n");
|
||||
sb.append("Available tests: ").append(numberOfAvailableTests);
|
||||
if (!testRunResult.disabledTestClasses.isEmpty() || !testRunResult.disabledTests.isEmpty()) {
|
||||
sb.append(" (Disabled ").append(testRunResult.disabledTestClasses.size()).append(" classes")
|
||||
.append(" and ").append(testRunResult.disabledTests.size()).append(" tests");
|
||||
}
|
||||
sb.append('\n');
|
||||
LOGGER.info(sb.toString());
|
||||
|
||||
for (PreparedTest test : tests) {
|
||||
|
|
Loading…
Reference in a new issue