f47b3914cffd438ad5d61e5849ac8434307d6ac1
[dcaegen2/analytics/tca.git] / dcae-analytics-model / src / test / java / org / openecomp / dcae / apod / analytics / model / facade / tca / AAITest.java
1 /*\r
2  * ===============================LICENSE_START======================================\r
3  *  dcae-analytics\r
4  * ================================================================================\r
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  *  Licensed under the Apache License, Version 2.0 (the "License");\r
8  *  you may not use this file except in compliance with the License.\r
9  *   You may obtain a copy of the License at\r
10  *\r
11  *          http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  *  Unless required by applicable law or agreed to in writing, software\r
14  *  distributed under the License is distributed on an "AS IS" BASIS,\r
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  *  See the License for the specific language governing permissions and\r
17  *  limitations under the License.\r
18  *  ============================LICENSE_END===========================================\r
19  */\r
20 \r
21 package org.openecomp.dcae.apod.analytics.model.facade.tca;\r
22 \r
23 import org.junit.Before;\r
24 import org.junit.Test;\r
25 import org.openecomp.dcae.apod.analytics.model.BaseAnalyticsModelUnitTest;\r
26 \r
27 import static org.hamcrest.core.Is.is;\r
28 import static org.junit.Assert.assertThat;\r
29 \r
30 /**\r
31  * @author Rajiv Singla . Creation Date: 12/16/2016.\r
32  */\r
33 public class AAITest extends BaseAnalyticsModelUnitTest {\r
34 \r
35     private AAI aai;\r
36     private static final String GENERIC_VNF_ID = "testVNFID";\r
37     private static final String CHANGED_GENERIC_VNF_ID = "changedVNFID";\r
38 \r
39     @Before\r
40     public void before() {\r
41         aai = new AAI();\r
42     }\r
43 \r
44     @Test\r
45     public void getGenericVNFId() throws Exception {\r
46         aai.setGenericVNFId(GENERIC_VNF_ID);\r
47         assertThat("VNFID must be same", aai.getGenericVNFId(), is(GENERIC_VNF_ID));\r
48     }\r
49 \r
50     @Test\r
51     public void setGenericVNFId() throws Exception {\r
52         final String genericVNFId = "testVNFID";\r
53         aai.setGenericVNFId(GENERIC_VNF_ID);\r
54         aai.setGenericVNFId(CHANGED_GENERIC_VNF_ID);\r
55         assertThat("VNFID must be same as changed VNFID", aai.getGenericVNFId(), is(CHANGED_GENERIC_VNF_ID));\r
56     }\r
57 }\r