Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / mso-infrastructure-bpmn / src / test / java / org / onap / so / bpmn / common / RainyDayHandlerIT.java
index 2f6d2ae..d669674 100644 (file)
  * See the License for the specific language governing permissions and 
  * limitations under the License. 
  * ============LICENSE_END========================================================= 
- */ 
+ */
 
 package org.onap.so.bpmn.common;
 
 import static org.onap.so.bpmn.mock.StubResponsePolicy.MockPolicyAbort;
-
 import java.util.HashMap;
 import java.util.Map;
 import java.util.UUID;
-
 import org.junit.Assert;
 import org.junit.Test;
 import org.onap.so.BaseIntegrationTest;
@@ -35,35 +33,35 @@ import org.onap.so.BaseIntegrationTest;
  */
 
 public class RainyDayHandlerIT extends BaseIntegrationTest {
-       
-       @Test   
-       
-       public void  TestRainyDayHandlingSuccess() {
-
-               Map<String, Object> variables = new HashMap<>();
-               variables.put("isDebugLogEnabled","true");
-               variables.put("msoRequestId", "testRequestId");
-               variables.put("serviceType", "X");
-               variables.put("vnfType", "Y");
-               variables.put("currentActivity", "BB1");                
-               variables.put("workStep", "1");
-               variables.put("failedActivity", "");
-               variables.put("errorCode", "123");
-               variables.put("errorText", "update failed");
-               variables.put("vnfName", "vSAMP1");
-               
-               MockPolicyAbort(wireMockServer);
-               
-               
-               String businessKey = UUID.randomUUID().toString();
-               invokeSubProcess("RainyDayHandler", businessKey, variables);
-
-               waitForProcessEnd(businessKey, 10000);
-
-               Assert.assertTrue(isProcessEnded(businessKey));
-               
-       }
-
-       
-       
-}
\ No newline at end of file
+
+    @Test
+
+    public void TestRainyDayHandlingSuccess() {
+
+        Map<String, Object> variables = new HashMap<>();
+        variables.put("isDebugLogEnabled", "true");
+        variables.put("msoRequestId", "testRequestId");
+        variables.put("serviceType", "X");
+        variables.put("vnfType", "Y");
+        variables.put("currentActivity", "BB1");
+        variables.put("workStep", "1");
+        variables.put("failedActivity", "");
+        variables.put("errorCode", "123");
+        variables.put("errorText", "update failed");
+        variables.put("vnfName", "vSAMP1");
+
+        MockPolicyAbort(wireMockServer);
+
+
+        String businessKey = UUID.randomUUID().toString();
+        invokeSubProcess("RainyDayHandler", businessKey, variables);
+
+        waitForProcessEnd(businessKey, 10000);
+
+        Assert.assertTrue(isProcessEnded(businessKey));
+
+    }
+
+
+
+}