Revert "Checkstyle enforcer"
[controller.git] / opendaylight / hosttracker / implementation / src / test / java / org / opendaylight / controller / hosttracker / internal / HostTrackerTest.java
index a99100b2956762fcefd4e92d891d25585b5bf3e0..9bd28c8e45315a5c7be43ad08a62909612004291 100644 (file)
@@ -22,38 +22,38 @@ import org.opendaylight.controller.hosttracker.hostAware.HostNodeConnector;
 \r
 public class HostTrackerTest extends TestCase {\r
 \r
-        @Test\r
-        public void testHostTrackerCallable() throws UnknownHostException {\r
-\r
-                HostTracker hostTracker = null;\r
-                hostTracker = new HostTracker();\r
-                Assert.assertFalse(hostTracker== null);\r
-\r
-                InetAddress hostIP = InetAddress.getByName("192.168.0.8");\r
-\r
-                HostTrackerCallable htCallable = new HostTrackerCallable (hostTracker, hostIP);\r
-                Assert.assertTrue(htCallable.trackedHost.equals(hostIP));\r
-                Assert.assertTrue(htCallable.hostTracker.equals(hostTracker));\r
-\r
-                long count = htCallable.latch.getCount();\r
-                htCallable.wakeup();\r
-                Assert.assertTrue(htCallable.latch.getCount() == --count );\r
-        }\r
-\r
-\r
-\r
-        @Test\r
-        public void testHostTracker() throws UnknownHostException {\r
-                HostTracker hostTracker = null;\r
-                hostTracker = new HostTracker();\r
-                Assert.assertFalse(hostTracker== null);\r
-\r
-                InetAddress hostIP_1 = InetAddress.getByName("192.168.0.8");\r
-                InetAddress hostIP_2 = InetAddress.getByName("192.168.0.18");\r
-                Future<HostNodeConnector> dschost = hostTracker.discoverHost(hostIP_1);\r
-                dschost = hostTracker.discoverHost(hostIP_2);\r
-                hostTracker.nonClusterObjectCreate();\r
-        }\r
-\r
+       @Test\r
+       public void testHostTrackerCallable() throws UnknownHostException {\r
+               \r
+               HostTracker hostTracker = null;\r
+               hostTracker = new HostTracker();\r
+               Assert.assertFalse(hostTracker== null);\r
+               \r
+               InetAddress hostIP = InetAddress.getByName("192.168.0.8");\r
+               \r
+               HostTrackerCallable htCallable = new HostTrackerCallable (hostTracker, hostIP);\r
+               Assert.assertTrue(htCallable.trackedHost.equals(hostIP));\r
+               Assert.assertTrue(htCallable.hostTracker.equals(hostTracker));\r
+\r
+               long count = htCallable.latch.getCount();\r
+               htCallable.wakeup();\r
+               Assert.assertTrue(htCallable.latch.getCount() == --count );\r
+       }               \r
+               \r
+       \r
+       \r
+       @Test\r
+       public void testHostTracker() throws UnknownHostException {\r
+               HostTracker hostTracker = null;\r
+               hostTracker = new HostTracker();\r
+               Assert.assertFalse(hostTracker== null);\r
+               \r
+               InetAddress hostIP_1 = InetAddress.getByName("192.168.0.8");\r
+               InetAddress hostIP_2 = InetAddress.getByName("192.168.0.18");\r
+               Future<HostNodeConnector> dschost = hostTracker.discoverHost(hostIP_1);\r
+               dschost = hostTracker.discoverHost(hostIP_2);\r
+               hostTracker.nonClusterObjectCreate();\r
+       }\r
+       \r
 \r
 }\r