Improved teardown logic. An error while deleting an account does no longer stop the tear down process (i.e. deletion of the other accounts).

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@6530 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2007-01-04 22:32:45 +00:00 committed by gato
parent 7828c5005b
commit d63a4f1fbe
1 changed files with 10 additions and 3 deletions

View File

@ -233,9 +233,16 @@ public abstract class SmackTestCase extends TestCase {
for (int i = 0; i < getMaxConnections(); i++) {
if (getConnection(i).isConnected()) {
// Delete the created account for the test
getConnection(i).getAccountManager().deleteAccount();
// Close the connection
getConnection(i).disconnect();
try {
getConnection(i).getAccountManager().deleteAccount();
}
catch (XMPPException e) {
e.printStackTrace();
}
if (getConnection(i).isConnected()) {
// Close the connection
getConnection(i).disconnect();
}
}
}
}