From 269bb260289b670336021a6c8819784d075345d4 Mon Sep 17 00:00:00 2001 From: Emil Ivov Date: Sun, 24 Sep 2006 21:12:27 +0000 Subject: [PATCH] Support for SIP (Work in Progress) comments. --- .../sip/SipProtocolProviderServiceLick.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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 943e902d6..bdd82279d 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 void start(BundleContext context) 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);