9d34a95e79cbbd9ceb8deba6a7aa492a8fca4b6d
[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
25 import org.junit.Test;
26
27 public class InvalidBuildingBlockInputExceptionTest {
28         private static final String MESSAGE = "message";
29         private static final Throwable CAUSE = new Throwable();
30         private InvalidBuildingBlockInputException invalidBuildingBlockInputException;
31         
32         @Test
33         public void defaultConstructorTest() {
34                 invalidBuildingBlockInputException = new InvalidBuildingBlockInputException();
35                 assertEquals(null, invalidBuildingBlockInputException.getMessage());
36                 assertEquals(null, invalidBuildingBlockInputException.getCause());
37         }
38         
39         @Test
40         public void messageConstructorTest() {
41                 invalidBuildingBlockInputException = new InvalidBuildingBlockInputException(MESSAGE);
42                 assertEquals(MESSAGE, invalidBuildingBlockInputException.getMessage());
43                 assertEquals(null, invalidBuildingBlockInputException.getCause());
44         }
45         
46         @Test
47         public void causeConstructorTest() {
48                 invalidBuildingBlockInputException = new InvalidBuildingBlockInputException(CAUSE);
49                 assertEquals(CAUSE.toString(), invalidBuildingBlockInputException.getMessage()); // CAUSE.toString because of the implementation of Exception(Throwable cause)
50                 assertEquals(CAUSE, invalidBuildingBlockInputException.getCause());
51         }
52         
53         @Test
54         public void messageAndCauseConstructorTest() {
55                 invalidBuildingBlockInputException = new InvalidBuildingBlockInputException(MESSAGE, CAUSE);
56                 assertEquals(MESSAGE, invalidBuildingBlockInputException.getMessage());
57                 assertEquals(CAUSE, invalidBuildingBlockInputException.getCause());
58         }
59         
60         @Test
61         public void messageAndCauseAndFlagsConstructorTest() {
62                 invalidBuildingBlockInputException = new InvalidBuildingBlockInputException(MESSAGE, CAUSE, true, true);
63                 assertEquals(MESSAGE, invalidBuildingBlockInputException.getMessage());
64                 assertEquals(CAUSE, invalidBuildingBlockInputException.getCause());
65         }
66
67 }