Sonar Fixes, Formatting
[aaf/authz.git] / auth / auth-core / src / test / java / org / onap / aaf / auth / rserv / test / JU_Version.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
23 package org.onap.aaf.auth.rserv.test;
24
25 import static org.junit.Assert.*;
26
27 import org.junit.Assert;
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.junit.runner.RunWith;
31 import org.mockito.Matchers;
32 import org.mockito.Mock;
33 import org.onap.aaf.auth.rserv.Version;
34 import org.powermock.modules.junit4.PowerMockRunner;
35
36 @RunWith(PowerMockRunner.class)
37 public class JU_Version {
38     Version version;
39     Version versionTest;
40
41
42     @Before
43     public void setUp(){
44         version = new Version("first\\.123");
45         versionTest = new Version("first\\.124");
46     }
47
48     @Test
49     public void testEquals(){
50         version.equals(versionTest);
51         versionTest.equals(version);
52         versionTest = new Version("fail\\.124");
53         version.equals(versionTest);
54         version.equals("This is not an object of version");
55         versionTest = new Version("NoVersion\\.number");
56         version.equals(versionTest);
57
58
59     }
60
61     @Test
62     public void testToString(){
63         String strVal = version.toString();
64         assertNotNull(strVal);
65     }
66
67     @Test
68     public void testHashCode() {
69         Assert.assertNotNull(version.hashCode());
70     }
71 }