1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-22 03:52:06 +01:00

[sinttest] Expand list of default test packages

The default set of packages that is scanned for integration tests are referencing jivesoftware. This commit adds igniterealtime-oriented package names.
This commit is contained in:
Guus der Kinderen 2024-04-26 17:16:03 +02:00
parent 2e94599d58
commit 8efa4bd732

View file

@ -223,7 +223,7 @@ public class SmackIntegrationTestFramework {
String[] testPackages;
if (config.testPackages == null || config.testPackages.isEmpty()) {
testPackages = new String[] { "org.jivesoftware.smackx", "org.jivesoftware.smack" };
testPackages = new String[] { "org.jivesoftware.smackx", "org.jivesoftware.smack", "org.igniterealtime.smackx", "org.igniterealtime.smack" };
}
else {
testPackages = config.testPackages.toArray(new String[config.testPackages.size()]);