Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / bpmn / servicedecomposition / entities / exceptions / InvalidBuildingBlockInputExceptionTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.bpmn.servicedecomposition.entities.exceptions;
22
23 import static org.junit.Assert.assertEquals;
24 import org.junit.Test;
25
26 public class InvalidBuildingBlockInputExceptionTest {
27     private static final String MESSAGE = "message";
28     private static final Throwable CAUSE = new Throwable();
29     private InvalidBuildingBlockInputException invalidBuildingBlockInputException;
30
31     @Test
32     public void defaultConstructorTest() {
33         invalidBuildingBlockInputException = new InvalidBuildingBlockInputException();
34         assertEquals(null, invalidBuildingBlockInputException.getMessage());
35         assertEquals(null, invalidBuildingBlockInputException.getCause());
36     }
37
38     @Test
39     public void messageConstructorTest() {
40         invalidBuildingBlockInputException = new InvalidBuildingBlockInputException(MESSAGE);
41         assertEquals(MESSAGE, invalidBuildingBlockInputException.getMessage());
42         assertEquals(null, invalidBuildingBlockInputException.getCause());
43     }
44
45     @Test
46     public void causeConstructorTest() {
47         invalidBuildingBlockInputException = new InvalidBuildingBlockInputException(CAUSE);
48         assertEquals(CAUSE.toString(), invalidBuildingBlockInputException.getMessage()); // CAUSE.toString because of
49                                                                                          // the implementation of
50                                                                                          // Exception(Throwable cause)
51         assertEquals(CAUSE, invalidBuildingBlockInputException.getCause());
52     }
53
54     @Test
55     public void messageAndCauseConstructorTest() {
56         invalidBuildingBlockInputException = new InvalidBuildingBlockInputException(MESSAGE, CAUSE);
57         assertEquals(MESSAGE, invalidBuildingBlockInputException.getMessage());
58         assertEquals(CAUSE, invalidBuildingBlockInputException.getCause());
59     }
60
61     @Test
62     public void messageAndCauseAndFlagsConstructorTest() {
63         invalidBuildingBlockInputException = new InvalidBuildingBlockInputException(MESSAGE, CAUSE, true, true);
64         assertEquals(MESSAGE, invalidBuildingBlockInputException.getMessage());
65         assertEquals(CAUSE, invalidBuildingBlockInputException.getCause());
66     }
67
68 }