dfb308196fd2c53fa21b805bb0dbf00061ede38c
[aaf/authz.git] / auth / auth-batch / src / test / java / org / onap / aaf / auth / batch / test / JU_CassBatch.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 package org.onap.aaf.auth.batch.test;
23
24 import static org.junit.Assert.*;
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.mockito.Mock;
29 import org.mockito.Mockito;
30 import org.onap.aaf.auth.batch.CassBatch;
31 import org.onap.aaf.auth.env.AuthzTrans;
32 import org.onap.aaf.auth.org.OrganizationException;
33 import org.onap.aaf.misc.env.APIException;
34
35 import static org.mockito.Mockito.*;
36
37 import java.io.IOException;
38
39 import org.junit.Test;
40
41 public class JU_CassBatch {
42     
43     AuthzTrans aTrans;
44     
45     private class CassBatchStub extends CassBatch {
46
47         protected CassBatchStub(AuthzTrans trans, String log4jName)
48                 throws APIException, IOException, OrganizationException {
49             super(trans, log4jName);
50             // TODO Auto-generated constructor stub
51         }
52
53         @Override
54         protected void run(AuthzTrans trans) {
55             // TODO Auto-generated method stub
56             
57         }
58         
59     }
60     
61     @Before
62     public void setUp() throws APIException, IOException, OrganizationException {
63         aTrans = mock(AuthzTrans.class);
64         //CassBatchStub cassBatchStub = new CassBatchStub(aTrans,"log");        //Cannot do until Batch is understood
65     }
66
67 }