Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-infrastructure-common / src / test / java / org / onap / so / bpmn / infrastructure / aai / AAIServiceInstanceTest.java
index b68b787..90576c9 100644 (file)
@@ -26,91 +26,91 @@ import org.junit.Test;
 
 public class AAIServiceInstanceTest {
 
-       AAIServiceInstance test = new AAIServiceInstance.AAIServiceInstanceBuilder()
-                       .setServiceInstanceName("serviceInstanceName").setServiceType("serviceType").setServiceRole("serviceRole")
-                       .setOrchestrationStatus("orchestrationStatus").setModelInvariantUuid("modelInvariantUuid")
-                       .setModelVersionId("modelVersionId").setEnvironmentContext("environmentContext")
-                       .setWorkloadContext("workloadContext").createAAIServiceInstance();
-
-       @Test
-       public void getServiceInstanceNameTest() throws Exception {
-               test.getServiceInstanceName();
-       }
-
-       @Test
-       public void setServiceInstanceNameTest() throws Exception {
-               test.setServiceInstanceName("serviceInstanceName");
-       }
-
-       @Test
-       public void getServiceTypeTest() throws Exception {
-               test.getServiceType();
-       }
-
-       @Test
-       public void setServiceTypeTest() throws Exception {
-               test.setServiceType("serviceType");
-       }
-
-       @Test
-       public void getServiceRoleTest() throws Exception {
-               test.getServiceRole();
-       }
-
-       @Test
-       public void setServiceRoleTest() throws Exception {
-               test.setServiceRole("serviceRole");
-       }
-
-       @Test
-       public void getOrchestrationStatusTest() throws Exception {
-               test.getOrchestrationStatus();
-       }
-
-       @Test
-       public void setOrchestrationStatusTest() throws Exception {
-               test.setOrchestrationStatus("status");
-       }
-
-       @Test
-       public void getModelInvariantUuidTest() throws Exception {
-               test.getModelInvariantUuid();
-       }
-
-       @Test
-       public void setModelInvariantUuidTest() throws Exception {
-               test.setModelInvariantUuid("uuid");
-       }
-
-       @Test
-       public void getModelVersionIdTest() throws Exception {
-               test.getModelVersionId();
-       }
-
-       @Test
-       public void setModelVersionIdTest() throws Exception {
-               test.setModelVersionId("versionId");
-       }
-
-       @Test
-       public void getEnvironmentContextTest() throws Exception {
-               test.getEnvironmentContext();
-       }
-
-       @Test
-       public void setEnvironmentContextTest() throws Exception {
-               test.setEnvironmentContext("context");
-       }
-
-       @Test
-       public void getWorkloadContextTest() throws Exception {
-               test.getWorkloadContext();
-       }
-
-       @Test
-       public void setWorkloadContextTest() throws Exception {
-               test.setWorkloadContext("context");
-       }
+    AAIServiceInstance test = new AAIServiceInstance.AAIServiceInstanceBuilder()
+            .setServiceInstanceName("serviceInstanceName").setServiceType("serviceType").setServiceRole("serviceRole")
+            .setOrchestrationStatus("orchestrationStatus").setModelInvariantUuid("modelInvariantUuid")
+            .setModelVersionId("modelVersionId").setEnvironmentContext("environmentContext")
+            .setWorkloadContext("workloadContext").createAAIServiceInstance();
+
+    @Test
+    public void getServiceInstanceNameTest() throws Exception {
+        test.getServiceInstanceName();
+    }
+
+    @Test
+    public void setServiceInstanceNameTest() throws Exception {
+        test.setServiceInstanceName("serviceInstanceName");
+    }
+
+    @Test
+    public void getServiceTypeTest() throws Exception {
+        test.getServiceType();
+    }
+
+    @Test
+    public void setServiceTypeTest() throws Exception {
+        test.setServiceType("serviceType");
+    }
+
+    @Test
+    public void getServiceRoleTest() throws Exception {
+        test.getServiceRole();
+    }
+
+    @Test
+    public void setServiceRoleTest() throws Exception {
+        test.setServiceRole("serviceRole");
+    }
+
+    @Test
+    public void getOrchestrationStatusTest() throws Exception {
+        test.getOrchestrationStatus();
+    }
+
+    @Test
+    public void setOrchestrationStatusTest() throws Exception {
+        test.setOrchestrationStatus("status");
+    }
+
+    @Test
+    public void getModelInvariantUuidTest() throws Exception {
+        test.getModelInvariantUuid();
+    }
+
+    @Test
+    public void setModelInvariantUuidTest() throws Exception {
+        test.setModelInvariantUuid("uuid");
+    }
+
+    @Test
+    public void getModelVersionIdTest() throws Exception {
+        test.getModelVersionId();
+    }
+
+    @Test
+    public void setModelVersionIdTest() throws Exception {
+        test.setModelVersionId("versionId");
+    }
+
+    @Test
+    public void getEnvironmentContextTest() throws Exception {
+        test.getEnvironmentContext();
+    }
+
+    @Test
+    public void setEnvironmentContextTest() throws Exception {
+        test.setEnvironmentContext("context");
+    }
+
+    @Test
+    public void getWorkloadContextTest() throws Exception {
+        test.getWorkloadContext();
+    }
+
+    @Test
+    public void setWorkloadContextTest() throws Exception {
+        test.setWorkloadContext("context");
+    }
 
 }