added test case to TestTemplate.java 98/77698/4
authorSandeep J <sandeejh@in.ibm.com>
Fri, 1 Feb 2019 07:51:29 +0000 (13:21 +0530)
committerJoss Armstrong <joss.armstrong@ericsson.com>
Tue, 5 Feb 2019 13:41:57 +0000 (13:41 +0000)
to increase code coverage

Issue-ID: APPC-1086
Change-Id: Ie6fdd33aab4ef6f0395d98375a26e83c750a06ce
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-adapters/appc-iaas-adapter/appc-iaas-adapter-bundle/src/test/java/org/onap/appc/adapter/openstack/heat/model/TestTemplate.java

index e225480..7da3732 100644 (file)
@@ -4,6 +4,8 @@
 * ================================================================================
 * Copyright 2018 TechMahindra
 *=================================================================================
+* Modifications Copyright 2019 IBM.
+*=================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
@@ -18,7 +20,7 @@
 * ============LICENSE_END=========================================================
 */
 package org.onap.appc.adapter.openstack.heat.model;
-
 import static org.junit.Assert.*;
 
 import org.junit.Before;
@@ -35,14 +37,20 @@ public class TestTemplate {
     @Test
     public void testGetHeatTemplateVersion() {
         template.setHeatTemplateVersion("1.0");
-        assertNotNull(template.getHeatTemplateVersion());
-        assertEquals(template.getHeatTemplateVersion(), "1.0");
+        assertEquals("1.0", template.getHeatTemplateVersion());
     }
 
     @Test
     public void testToString_ReturnNonEmptyString() {
-        assertNotEquals(template.toString(), "");
-        assertNotEquals(template.toString(), null);
+        assertNotEquals("",template.toString());
+        assertNotEquals(null,template.toString());
+    }
+
+    @Test
+    public void testResources() {
+        Resources_ resources = new Resources_();
+        template.setResources(resources);
+        assertSame(resources, template.getResources());
     }
 
 }