diff options
author | Emil Ivov <emcho@jitsi.org> | 2006-09-24 21:12:27 +0000 |
---|---|---|
committer | Emil Ivov <emcho@jitsi.org> | 2006-09-24 21:12:27 +0000 |
commit | 269bb260289b670336021a6c8819784d075345d4 (patch) | |
tree | b56db8a8b7f705c2b1e86367d97c22bfae71700b /test | |
parent | 6ba3dd225231776939b6fefeffe5409f613e1f8d (diff) | |
download | jitsi-269bb260289b670336021a6c8819784d075345d4.zip jitsi-269bb260289b670336021a6c8819784d075345d4.tar.gz jitsi-269bb260289b670336021a6c8819784d075345d4.tar.bz2 |
Support for SIP (Work in Progress)
comments.
Diffstat (limited to 'test')
-rw-r--r-- | test/net/java/sip/communicator/slick/protocol/sip/SipProtocolProviderServiceLick.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/net/java/sip/communicator/slick/protocol/sip/SipProtocolProviderServiceLick.java b/test/net/java/sip/communicator/slick/protocol/sip/SipProtocolProviderServiceLick.java index 943e902..bdd8227 100644 --- a/test/net/java/sip/communicator/slick/protocol/sip/SipProtocolProviderServiceLick.java +++ b/test/net/java/sip/communicator/slick/protocol/sip/SipProtocolProviderServiceLick.java @@ -50,9 +50,23 @@ public class SipProtocolProviderServiceLick SipSlickFixture.bc = context; + //First test account installation so that the service that has + //been installed by it gets tested by the rest of the tests. addTestSuite(TestAccountInstallation.class); + + //This must remain second as that's where the protocol would be + //made to login/authenticate/signon its service provider. addTestSuite(TestProtocolProviderServiceSipImpl.class); + + addTestSuite(TestOperationSetBasicTelephonySipImpl.class); + + //This must remain after all other tests using the accounts + //are done since it tests account uninstallation and the + //accounts we use for testing won't be available after that. addTest(TestAccountUninstallation.suite()); + + //This must remain last since it counts on the fact that + //account uninstallation has already been executed and that. addTestSuite(TestAccountUninstallationPersistence.class); context.registerService(getClass().getName(), this, properties); |