mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +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('\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) {
|
||||||
|
|
Loading…
Reference in a new issue