mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Use lowercase chars in integration testRunId
This commit is contained in:
parent
73fcbc6b27
commit
4248fbbb89
1 changed files with 9 additions and 1 deletions
|
@ -35,6 +35,7 @@ import java.util.HashSet;
|
|||
import java.util.Iterator;
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
|
@ -584,7 +585,14 @@ public class SmackIntegrationTestFramework {
|
|||
}
|
||||
|
||||
public static final class TestRunResult {
|
||||
public final String testRunId = StringUtils.insecureRandomString(5);
|
||||
|
||||
/**
|
||||
* A short String of lowercase characters and numbers used to identify a integration test
|
||||
* run. We use lowercase characters because this string will eventually be part of the
|
||||
* localpart of the used JIDs (and the localpart is case insensitive).
|
||||
*/
|
||||
public final String testRunId = StringUtils.insecureRandomString(5).toLowerCase(Locale.US);
|
||||
|
||||
private final List<SuccessfulTest> successfulTests = Collections.synchronizedList(new LinkedList<SuccessfulTest>());
|
||||
private final List<FailedTest> failedIntegrationTests = Collections.synchronizedList(new LinkedList<FailedTest>());
|
||||
private final List<TestNotPossible> impossibleTestMethods = Collections.synchronizedList(new LinkedList<TestNotPossible>());
|
||||
|
|
Loading…
Reference in a new issue