AT&T 2.0.19 Code drop, stage 3
[aaf/authz.git] / auth / auth-core / src / test / java / org / onap / aaf / auth / layer / test / JU_Result.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 package org.onap.aaf.auth.layer.test;
22
23 import static org.junit.Assert.*;
24
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.mockito.Mock;
28 import org.onap.aaf.auth.layer.Result;
29
30 public class JU_Result {
31         Result result;
32 //      @Mock
33 //      RV value;
34         int status=0;
35         String details = "details"; 
36         String[] variables;
37         
38         @SuppressWarnings({ "unchecked", "rawtypes" })
39         @Before
40         public void setUp(){
41                 //TODO: Gabe [JUnit] Not visible for junit
42                 //result = new Result(result, status, details, variables);
43         }
44
45 //      @Test
46 //      public void testPartialContent() {
47 //              Result Res = result.partialContent(true);
48 //              System.out.println("Res" +Res);
49 //              assertEquals(details,Res.toString());
50 //              
51 //      }
52         
53         @Test
54         public void netYetTested() {
55                 fail("Tests not yet implemented");
56         }
57
58 }