Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / onap / so / bpmn / core / WorkflowExceptionTest.java
1 /*
2  * ============LICENSE_START======================================================= ONAP : SO
3  * ================================================================================ Copyright (C) 2018 AT&T Intellectual
4  * Property. All rights reserved. ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * 
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
11  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
12  * specific language governing permissions and limitations under the License.
13  * ============LICENSE_END=========================================================
14  */
15
16 package org.onap.so.bpmn.core;
17
18 import static org.junit.Assert.assertEquals;
19 import static org.junit.Assert.assertNotEquals;
20 import org.junit.Test;
21
22 public class WorkflowExceptionTest {
23
24     private WorkflowException workflowException;
25
26     @Test
27     public void test() {
28         String processKey = "AnyProcessKey";
29         int errorCode = 200;
30         String errorMessage = "any error message!";
31         workflowException = new WorkflowException(processKey, errorCode, errorMessage);
32         assertEquals(errorCode, workflowException.getErrorCode());
33         assertEquals(errorMessage, workflowException.getErrorMessage());
34         assertEquals(processKey, workflowException.getProcessKey());
35         assertEquals("*", workflowException.getWorkStep());
36         String workStep = "one";
37         workflowException = new WorkflowException(processKey, errorCode, errorMessage, workStep);
38         assertEquals(workStep, workflowException.getWorkStep());
39         assertNotEquals(null, workflowException.toString());
40     }
41 }