Sonar Fixes, Formatting
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / batch / test / JU_BatchException.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 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
22
23 package org.onap.aaf.auth.batch.test;
24
25 import static org.junit.Assert.*;
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.Test;
29 import org.mockito.Mock;
30 import org.mockito.Mockito;
31 import org.onap.aaf.auth.batch.BatchException;
32
33 import static org.mockito.Mockito.*;
34 import org.junit.Test;
35
36 public class JU_BatchException {
37
38     BatchException bExcept1;
39     BatchException bExcept2;
40     BatchException bExcept3;
41     BatchException bExcept4;
42     BatchException bExcept5;
43     Throwable throwable;
44
45     @Before
46     public void setUp() {
47         throwable = new Throwable();
48     }
49
50     @Test
51     public void testBatchException() {
52         bExcept1 = new BatchException();
53         bExcept2 = new BatchException("test");
54         bExcept3 = new BatchException(throwable);
55         bExcept4 = new BatchException("test", throwable);
56         bExcept5 = new BatchException("test", throwable,true,true);
57     }
58
59 }