Replaced all tabs with spaces in java and pom.xml
[so.git] / asdc-controller / src / test / java / org / onap / so / asdc / tenantIsolation / AaiClientPropertiesImplTest.java
index a20f6de..9aad96c 100644 (file)
 package org.onap.so.asdc.tenantIsolation;
 
 import static org.junit.Assert.assertEquals;
-
 import org.junit.BeforeClass;
 import org.junit.Test;
 import org.onap.so.asdc.BaseTest;
 import org.onap.so.client.aai.AAIVersion;
 
 public class AaiClientPropertiesImplTest extends BaseTest {
-       
-       private static final String SYSTEM_NAME = "MSO";
-       private static final String LOCAL_HOST = "http://localhost:";
-       
-       @BeforeClass
-       public static void setup() throws Exception {
-               System.setProperty("mso.config.path", "src/test/resources");
-       }
-       
-       @Test
-       public void getEndpointTest() throws Exception {
-               AaiClientPropertiesImpl aaiClientPropertiesImpl = new AaiClientPropertiesImpl();
-               String aaiEndpoint = aaiClientPropertiesImpl.getEndpoint().toString();
-               assertEquals(LOCAL_HOST + wireMockPort, aaiEndpoint);
-       }
-       
-       @Test
-       public void getSystemNameTest() {
-               AaiClientPropertiesImpl aaiClientPropertiesImpl = new AaiClientPropertiesImpl();
-               assertEquals(SYSTEM_NAME, aaiClientPropertiesImpl.getSystemName());
-       }
-       
-       @Test
-       public void getDefaultVersionTest() {
-               AaiClientPropertiesImpl aaiClientPropertiesImpl = new AaiClientPropertiesImpl();
-               assertEquals(AAIVersion.LATEST, aaiClientPropertiesImpl.getDefaultVersion());
-       }
+
+    private static final String SYSTEM_NAME = "MSO";
+    private static final String LOCAL_HOST = "http://localhost:";
+
+    @BeforeClass
+    public static void setup() throws Exception {
+        System.setProperty("mso.config.path", "src/test/resources");
+    }
+
+    @Test
+    public void getEndpointTest() throws Exception {
+        AaiClientPropertiesImpl aaiClientPropertiesImpl = new AaiClientPropertiesImpl();
+        String aaiEndpoint = aaiClientPropertiesImpl.getEndpoint().toString();
+        assertEquals(LOCAL_HOST + wireMockPort, aaiEndpoint);
+    }
+
+    @Test
+    public void getSystemNameTest() {
+        AaiClientPropertiesImpl aaiClientPropertiesImpl = new AaiClientPropertiesImpl();
+        assertEquals(SYSTEM_NAME, aaiClientPropertiesImpl.getSystemName());
+    }
+
+    @Test
+    public void getDefaultVersionTest() {
+        AaiClientPropertiesImpl aaiClientPropertiesImpl = new AaiClientPropertiesImpl();
+        assertEquals(AAIVersion.LATEST, aaiClientPropertiesImpl.getDefaultVersion());
+    }
 }