bcb862676c5d543d8ca42e53fde3bae4bf42672f
[appc.git] / appc-dispatcher / appc-license-manager / appc-license-manager-api / src / test / java / org / onap / appc / licmgr / objects / TestLicenseModel.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : APPC
4 * ================================================================================
5 * Copyright 2018 TechMahindra
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 package org.onap.appc.licmgr.objects;
21
22 import org.junit.Assert;
23 import org.junit.Before;
24 import org.junit.Test;
25
26 public class TestLicenseModel {
27     private LicenseModel licenseModel;
28
29     @Before
30     public void setUp() {
31         licenseModel = new LicenseModel();
32     }
33
34     @Test
35     public void testGetEntitlementPoolUuid() {
36         licenseModel.setEntitlementPoolUuid("EntitlementPoolUuid");
37         Assert.assertNotNull(licenseModel.getEntitlementPoolUuid());
38         Assert.assertEquals(licenseModel.getEntitlementPoolUuid(), "EntitlementPoolUuid");
39     }
40
41     @Test
42     public void testGetLicenseKeyGroupUuid() {
43         licenseModel.setLicenseKeyGroupUuid("LicenseKeyGroupUuid");
44         Assert.assertNotNull(licenseModel.getLicenseKeyGroupUuid());
45         Assert.assertEquals(licenseModel.getLicenseKeyGroupUuid(), "LicenseKeyGroupUuid");
46     }
47
48 }