Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / client / restproperties / AAIPropertiesImplTest.java
index 2e74d44..0d6fede 100644 (file)
 package org.onap.so.client.restproperties;
 
 import static org.junit.Assert.assertEquals;
-
 import java.net.MalformedURLException;
 import java.net.URL;
-
 import org.junit.Test;
 import org.onap.so.client.aai.AAIVersion;
 
-public class AAIPropertiesImplTest{
+public class AAIPropertiesImplTest {
+
+    private AAIPropertiesImpl aaiPropertiesImpl = new AAIPropertiesImpl();
+
+    @Test
+    public void getEndpointTest() throws MalformedURLException {
+        assertEquals("aai.endpoint", AAIPropertiesImpl.AAI_ENDPOINT);
+    }
+
+    @Test
+    public void getAuthTest() {
+        String expectedAuth = "aai.auth";
+        assertEquals(expectedAuth, AAIPropertiesImpl.AAI_AUTH);
+    }
 
-       private AAIPropertiesImpl aaiPropertiesImpl = new AAIPropertiesImpl();
-       
-       @Test
-       public void getEndpointTest() throws MalformedURLException {
-               assertEquals("aai.endpoint", AAIPropertiesImpl.AAI_ENDPOINT);
-       }
-       
-       @Test
-       public void getAuthTest() {
-               String expectedAuth = "aai.auth";
-               assertEquals(expectedAuth, AAIPropertiesImpl.AAI_AUTH);
-       }
-       
-       @Test
-       public void getKeyTest() {
-               assertEquals("mso.msoKey", AAIPropertiesImpl.MSO_MSO_KEY);
-       }
+    @Test
+    public void getKeyTest() {
+        assertEquals("mso.msoKey", AAIPropertiesImpl.MSO_MSO_KEY);
+    }
 }