Remove Tabs, per Jococo
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / direct / test / JU_DirectLocatorCreator.java
index 0eb75fc..7ac4ed1 100644 (file)
@@ -38,52 +38,52 @@ import org.onap.aaf.cadi.config.Config;
 @RunWith(MockitoJUnitRunner.class) 
 public class JU_DirectLocatorCreator {
 
-       @Mock
-       AuthzEnv env;
-       
-       @Mock
-       LocateDAO locateDAO;
-       
-       @Mock
-       PropAccess access;
-       
-       @Before
-       public void setUp() throws Exception {
-               initMocks(this);
-       }
-       
-       @Test
-       public void testCreate() {
-               Mockito.doReturn(access).when(env).access();
-               Mockito.doReturn("20").when(access).getProperty(Config.CADI_LATITUDE,null);
-               Mockito.doReturn("20").when(access).getProperty(Config.CADI_LONGITUDE,null);
-               Mockito.doReturn("").when(access).getProperty(Config.AAF_LOCATOR_CONTAINER,"");
-               Mockito.doReturn("").when(access).getProperty(Config.AAF_LOCATOR_CONTAINER_NS,"");
-               Mockito.doReturn("http://aafurl.com").when(access).getProperty(Config.AAF_URL,null);
-               DirectLocatorCreator directLocObj = new DirectLocatorCreator(env, locateDAO);
-               try {
-                       directLocObj.create("test", "30.20.30.20");
-               } catch (LocatorException e) {
-                       // TODO Auto-generated catch block
-                       e.printStackTrace();
-               }
-               directLocObj.setSelf("30.20.30.10", 8080);
-               try {
-                       directLocObj.create("test", "30.20.30.20");
-               } catch (LocatorException e) {
-                       // TODO Auto-generated catch block
-                       e.printStackTrace();
-               }
-       }
+    @Mock
+    AuthzEnv env;
+    
+    @Mock
+    LocateDAO locateDAO;
+    
+    @Mock
+    PropAccess access;
+    
+    @Before
+    public void setUp() throws Exception {
+        initMocks(this);
+    }
+    
+    @Test
+    public void testCreate() {
+        Mockito.doReturn(access).when(env).access();
+        Mockito.doReturn("20").when(access).getProperty(Config.CADI_LATITUDE,null);
+        Mockito.doReturn("20").when(access).getProperty(Config.CADI_LONGITUDE,null);
+        Mockito.doReturn("").when(access).getProperty(Config.AAF_LOCATOR_CONTAINER,"");
+        Mockito.doReturn("").when(access).getProperty(Config.AAF_LOCATOR_CONTAINER_NS,"");
+        Mockito.doReturn("http://aafurl.com").when(access).getProperty(Config.AAF_URL,null);
+        DirectLocatorCreator directLocObj = new DirectLocatorCreator(env, locateDAO);
+        try {
+            directLocObj.create("test", "30.20.30.20");
+        } catch (LocatorException e) {
+            // TODO Auto-generated catch block
+            e.printStackTrace();
+        }
+        directLocObj.setSelf("30.20.30.10", 8080);
+        try {
+            directLocObj.create("test", "30.20.30.20");
+        } catch (LocatorException e) {
+            // TODO Auto-generated catch block
+            e.printStackTrace();
+        }
+    }
 
-       @Test
-       public void testSetSelf() {
-               Mockito.doReturn(access).when(env).access();
-               Mockito.doReturn("20").when(access).getProperty(Config.CADI_LATITUDE,null);
-               Mockito.doReturn("20").when(access).getProperty(Config.CADI_LONGITUDE,null);
-               Mockito.doReturn("20").when(access).getProperty(Config.AAF_LOCATOR_CONTAINER,"");
-               Mockito.doReturn("http://aafurl.com").when(access).getProperty(Config.AAF_URL,null);
-               DirectLocatorCreator directLocObj = new DirectLocatorCreator(env, locateDAO);
-               directLocObj.setSelf("30.20.30.10", 8080);
-       }
+    @Test
+    public void testSetSelf() {
+        Mockito.doReturn(access).when(env).access();
+        Mockito.doReturn("20").when(access).getProperty(Config.CADI_LATITUDE,null);
+        Mockito.doReturn("20").when(access).getProperty(Config.CADI_LONGITUDE,null);
+        Mockito.doReturn("20").when(access).getProperty(Config.AAF_LOCATOR_CONTAINER,"");
+        Mockito.doReturn("http://aafurl.com").when(access).getProperty(Config.AAF_URL,null);
+        DirectLocatorCreator directLocObj = new DirectLocatorCreator(env, locateDAO);
+        directLocObj.setSelf("30.20.30.10", 8080);
+    }
 }