AT&T 2.0.19 Code drop, stage 2
[aaf/authz.git] / cadi / client / src / test / java / org / onap / aaf / client / test / JU_HolderTest.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.client.test;
23
24 import static org.junit.Assert.*;
25
26 import org.junit.Test;
27 import org.onap.aaf.cadi.client.Holder;
28
29 import static org.junit.Assert.*;
30
31 import org.junit.Before;
32 import org.junit.Test;
33
34 public class JU_HolderTest {
35
36         @Test
37         public void testSet() {
38                 Holder<String> holder = new Holder<String>("StringHolder");
39                 assertEquals(holder.get(), "StringHolder");
40                 
41                 holder.set("New String");
42                 assertEquals(holder.get(), "New String");
43         }
44
45         @Test
46         public void testSet4() {
47                 Holder<String> holder = new Holder<String>("StringHolder");
48                 assertEquals(holder.get(), "StringHolder");
49                 
50                 holder.set("New String1");
51                 assertEquals(holder.get(), "New String1");
52         }
53         @Test
54         public void testSet1() {
55                 Holder<String> holder = new Holder<String>("StringHolder");
56                 assertEquals(holder.get(), "StringHolder");
57                 
58                 holder.set("New String2");
59                 assertEquals(holder.get(), "New String2");
60         }
61         
62         @Test
63         public void testSet2() {
64                 Holder<String> holder = new Holder<String>("StringHolder");
65                 assertEquals(holder.get(), "StringHolder");
66                 
67                 holder.set("New String3");
68                 assertEquals(holder.get(), "New String3");
69         }
70         
71         @Test
72         public void testSet3() {
73                 Holder<String> holder = new Holder<String>("StringHolder");
74                 assertEquals(holder.get(), "StringHolder");
75                 
76                 holder.set("New String4");
77                 assertEquals(holder.get(), "New String4");
78         }
79 }