aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLyubomir Marinov <lyubomir.marinov@jitsi.org>2013-02-25 09:18:20 +0000
committerLyubomir Marinov <lyubomir.marinov@jitsi.org>2013-02-25 09:18:20 +0000
commit6476071892dcf446442957d5075f874bd093fdea (patch)
tree37e11649d5858fa17ea867c6baefd54ac3b4daa3 /test
parentd18143cf6de22cb8171ae09b72e2ac2434629a06 (diff)
downloadjitsi-6476071892dcf446442957d5075f874bd093fdea.zip
jitsi-6476071892dcf446442957d5075f874bd093fdea.tar.gz
jitsi-6476071892dcf446442957d5075f874bd093fdea.tar.bz2
Fixes warnings.
Diffstat (limited to 'test')
-rw-r--r--test/net/java/sip/communicator/slick/netaddr/NetworkAddressManagerServiceLick.java15
-rw-r--r--test/net/java/sip/communicator/slick/netaddr/TestAddressPool.java6
-rw-r--r--test/net/java/sip/communicator/slick/netaddr/TestNetworkAddressManagerService.java13
3 files changed, 26 insertions, 8 deletions
diff --git a/test/net/java/sip/communicator/slick/netaddr/NetworkAddressManagerServiceLick.java b/test/net/java/sip/communicator/slick/netaddr/NetworkAddressManagerServiceLick.java
index 776cb3f..f520cf8 100644
--- a/test/net/java/sip/communicator/slick/netaddr/NetworkAddressManagerServiceLick.java
+++ b/test/net/java/sip/communicator/slick/netaddr/NetworkAddressManagerServiceLick.java
@@ -1,3 +1,9 @@
+/*
+ * Jitsi, the OpenSource Java VoIP and Instant Messaging client.
+ *
+ * Distributable under LGPL license.
+ * See terms of license at gnu.org.
+ */
package net.java.sip.communicator.slick.netaddr;
import java.util.*;
@@ -7,11 +13,12 @@ import net.java.sip.communicator.service.netaddr.*;
import net.java.sip.communicator.util.*;
import org.osgi.framework.*;
+
/**
- * This class launche the bundle of which test the NetworkManagerBundle
- * this bundle is a set of (j)unit tests. It aim to be launch by the
- * cruisecontrol module to verify tha an implementation of the
- * NetworkAddressManagerService interface is good.
+ * This class launches the bundle of which tests the NetworkManagerBundle this
+ * bundle is a set of (j)unit tests. It aim to be launch by the cruisecontrol
+ * module to verify that an implementation of the NetworkAddressManagerService
+ * interface is good.
*
* @author Emil Ivov
* @author Pierre Floury
diff --git a/test/net/java/sip/communicator/slick/netaddr/TestAddressPool.java b/test/net/java/sip/communicator/slick/netaddr/TestAddressPool.java
index 303f5c0..3fbe168 100644
--- a/test/net/java/sip/communicator/slick/netaddr/TestAddressPool.java
+++ b/test/net/java/sip/communicator/slick/netaddr/TestAddressPool.java
@@ -1,3 +1,9 @@
+/*
+ * Jitsi, the OpenSource Java VoIP and Instant Messaging client.
+ *
+ * Distributable under LGPL license.
+ * See terms of license at gnu.org.
+ */
package net.java.sip.communicator.slick.netaddr;
import junit.framework.*;
diff --git a/test/net/java/sip/communicator/slick/netaddr/TestNetworkAddressManagerService.java b/test/net/java/sip/communicator/slick/netaddr/TestNetworkAddressManagerService.java
index dc86b2f..66fd19a 100644
--- a/test/net/java/sip/communicator/slick/netaddr/TestNetworkAddressManagerService.java
+++ b/test/net/java/sip/communicator/slick/netaddr/TestNetworkAddressManagerService.java
@@ -1,3 +1,9 @@
+/*
+ * Jitsi, the OpenSource Java VoIP and Instant Messaging client.
+ *
+ * Distributable under LGPL license.
+ * See terms of license at gnu.org.
+ */
package net.java.sip.communicator.slick.netaddr;
import java.net.*;
@@ -5,7 +11,6 @@ import java.util.*;
import junit.framework.*;
import net.java.sip.communicator.service.netaddr.*;
-import net.java.sip.communicator.util.*;
import org.jitsi.service.configuration.*;
import org.osgi.framework.*;
@@ -15,14 +20,14 @@ import org.osgi.framework.*;
*
* @author Emil Ivov
* @author Pierre Floury
- *
*/
-public class TestNetworkAddressManagerService extends TestCase {
+public class TestNetworkAddressManagerService
+ extends TestCase
+{
/**
* The NetworkAddressManagerService that we will be testing.
*/
private NetworkAddressManagerService networkAddressManagerService = null;
- private Logger logger = Logger.getLogger(getClass().getName());
private static final String PROP_STUN_SERVER_ADDR =
"net.java.sip.communicator.STUN_SERVER_ADDRESS";