mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
a5693609b2
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11826 b35dd754-fafc-0310-a699-88a17e54d16e
34 lines
853 B
Java
34 lines
853 B
Java
package org.jivesoftware.smack;
|
|
|
|
/**
|
|
* Run all tests defined in RosterTest but initialize the roster before connection is logged in and
|
|
* authenticated.
|
|
*
|
|
* @author Henning Staib
|
|
*/
|
|
public class RosterInitializedBeforeConnectTest extends RosterSmackTest {
|
|
|
|
public RosterInitializedBeforeConnectTest(String name) {
|
|
super(name);
|
|
}
|
|
|
|
protected boolean createOfflineConnections() {
|
|
return true;
|
|
}
|
|
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
|
|
// initialize all rosters before login
|
|
for (int i = 0; i < getMaxConnections(); i++) {
|
|
XMPPConnection connection = getConnection(i);
|
|
assertFalse(connection.isConnected());
|
|
|
|
Roster roster = connection.getRoster();
|
|
assertNotNull(roster);
|
|
|
|
connectAndLogin(i);
|
|
}
|
|
}
|
|
|
|
}
|