Modify deprecated sonar properties in AAF
[aaf/authz.git] / cadi / cass / src / test / java / org / onap / aaf / cadi / cass / JU_AAFBaseTest.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 2017 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.cadi.cass;
23
24 import org.junit.After;
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.onap.aaf.cadi.Access;
28 import org.onap.aaf.cadi.Lur;
29 import org.onap.aaf.cadi.PropAccess;
30 import org.onap.aaf.cadi.Access.Level;
31
32 import junit.framework.Assert;
33
34 import com.att.aaf.cadi.cass.AAFBase;
35
36 import static org.junit.Assert.*;
37
38 import org.apache.cassandra.exceptions.ConfigurationException;
39
40 public class JU_AAFBaseTest
41 {
42         
43         //TODO: REmove this file, no need for junit for abstract class
44         @Before
45         public void setUp()
46         {
47                 
48         }
49
50         @After
51         public void tearDown()
52         {
53                 
54         }
55
56         
57         @Test
58         public void test_method_setAccess_0_branch_0()
59         {
60                 System.out.println("Now Testing Method:setAccess Branch:0");
61                 
62                 //Call Method
63                 AAFBase.setAccess(null);
64                 
65         }
66         
67         
68         
69
70 }