mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Remove never-thrown exception declarations
This commit is contained in:
parent
c7454ce968
commit
51700400bc
2 changed files with 3 additions and 7 deletions
|
@ -20,8 +20,6 @@ import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.security.KeyManagementException;
|
|
||||||
import java.security.NoSuchAlgorithmException;
|
|
||||||
|
|
||||||
import org.igniterealtime.smack.inttest.AbstractSmackLowLevelIntegrationTest;
|
import org.igniterealtime.smack.inttest.AbstractSmackLowLevelIntegrationTest;
|
||||||
import org.igniterealtime.smack.inttest.Configuration;
|
import org.igniterealtime.smack.inttest.Configuration;
|
||||||
|
@ -63,9 +61,8 @@ public class StreamManagementTest extends AbstractSmackLowLevelIntegrationTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@SmackIntegrationTest
|
@SmackIntegrationTest
|
||||||
public void testStreamManagement(XMPPTCPConnection conOne, XMPPTCPConnection conTwo) throws InterruptedException, KeyManagementException,
|
public void testStreamManagement(XMPPTCPConnection conOne, XMPPTCPConnection conTwo) throws InterruptedException,
|
||||||
NoSuchAlgorithmException, SmackException, IOException, XMPPException,
|
SmackException, IOException, XMPPException {
|
||||||
TestNotPossibleException {
|
|
||||||
final String body1 = "Hi, what's up? " + testRunId;
|
final String body1 = "Hi, what's up? " + testRunId;
|
||||||
final String body2 = "Hi, what's up? I've been just instantly shutdown" + testRunId;
|
final String body2 = "Hi, what's up? I've been just instantly shutdown" + testRunId;
|
||||||
final String body3 = "Hi, what's up? I've been just resumed" + testRunId;
|
final String body3 = "Hi, what's up? I've been just resumed" + testRunId;
|
||||||
|
|
|
@ -22,7 +22,6 @@ import static org.junit.Assert.assertTrue;
|
||||||
import org.igniterealtime.smack.inttest.AbstractSmackIntegrationTest;
|
import org.igniterealtime.smack.inttest.AbstractSmackIntegrationTest;
|
||||||
import org.igniterealtime.smack.inttest.SmackIntegrationTest;
|
import org.igniterealtime.smack.inttest.SmackIntegrationTest;
|
||||||
import org.igniterealtime.smack.inttest.SmackIntegrationTestEnvironment;
|
import org.igniterealtime.smack.inttest.SmackIntegrationTestEnvironment;
|
||||||
import org.igniterealtime.smack.inttest.TestNotPossibleException;
|
|
||||||
import org.jivesoftware.smack.SmackException.NoResponseException;
|
import org.jivesoftware.smack.SmackException.NoResponseException;
|
||||||
import org.jivesoftware.smack.SmackException.NotConnectedException;
|
import org.jivesoftware.smack.SmackException.NotConnectedException;
|
||||||
import org.jivesoftware.smack.XMPPException.XMPPErrorException;
|
import org.jivesoftware.smack.XMPPException.XMPPErrorException;
|
||||||
|
@ -35,7 +34,7 @@ public class VersionIntegrationTest extends AbstractSmackIntegrationTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@SmackIntegrationTest
|
@SmackIntegrationTest
|
||||||
public void testVersion() throws NoResponseException, XMPPErrorException, NotConnectedException, InterruptedException, TestNotPossibleException {
|
public void testVersion() throws NoResponseException, XMPPErrorException, NotConnectedException, InterruptedException {
|
||||||
// TODO put into @BeforeClass method
|
// TODO put into @BeforeClass method
|
||||||
VersionManager.setAutoAppendSmackVersion(false);
|
VersionManager.setAutoAppendSmackVersion(false);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue