Issue-ID: USECASEUI-439
Change-Id: I8083b93ec650862f8a8b555a29957f9a357c7270
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
  */
 package org.onap.usecaseui.server.service.lcm.domain.aai.bean;
 
-import org.junit.Test; 
+import org.junit.Assert;
+import org.junit.Test;
 import org.junit.Before; 
 import org.junit.After;
 import org.junit.runner.RunWith;
        public void testAAIServiceSubscription() throws Exception {
                AAIServiceSubscription ass = new AAIServiceSubscription("serviceType","resourceVersion");
                ass.getServiceType();
+               Assert.assertEquals(ass.getServiceType(),"serviceType");
+               Assert.assertEquals(ass.getResourceVersion(),"resourceVersion");
        }
 }