Unit test coverage for domainmodel-lib classes
[appc.git] / appc-dg / appc-dg-shared / appc-dg-domain-model-lib / src / test / java / org / onap / appc / domainmodel / TestVnf.java
diff --git a/appc-dg/appc-dg-shared/appc-dg-domain-model-lib/src/test/java/org/onap/appc/domainmodel/TestVnf.java b/appc-dg/appc-dg-shared/appc-dg-domain-model-lib/src/test/java/org/onap/appc/domainmodel/TestVnf.java
new file mode 100644 (file)
index 0000000..08b70ba
--- /dev/null
@@ -0,0 +1,82 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : APPC
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+* ============LICENSE_END=========================================================
+*/
+package org.onap.appc.domainmodel;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+import java.util.LinkedList;
+import java.util.List;
+
+import org.junit.Before;
+import org.junit.Test;
+
+public class TestVnf {
+    private Vnf vnf;
+
+    @Before
+    public void SetUp() {
+        vnf=new Vnf();
+    }
+
+    @Test
+    public void testGetVnfId() {
+        vnf.setVnfId("Z");
+        assertNotNull(vnf.getVnfId());
+        assertEquals(vnf.getVnfId(),"Z");
+    }
+
+    @Test
+    public void testGetvnfType() {
+        vnf.setVnfType("A");
+        assertNotNull(vnf.getVnfType());
+        assertEquals(vnf.getVnfType(),"A");
+    }
+
+    @Test
+    public void testGetVnfVersion() {
+        vnf.setVnfVersion("1.0");
+        assertNotNull(vnf.getVnfVersion());
+        assertEquals(vnf.getVnfVersion(),"1.0");
+    }
+
+    @Test
+    public void testList() {
+        List<Vserver> vservers = new LinkedList<>();
+        vnf.setVservers(vservers);
+        assertNotNull(vnf.getVservers());
+        assertEquals(vnf.getVservers(),vservers);
+        
+    }
+
+    @Test
+    public void testToString_ReturnNonEmptyString() {
+        assertNotEquals(vnf.toString(), "");
+        assertNotEquals(vnf.toString(), null);
+    }
+
+    @Test
+    public void testToString_ContainsString() {
+        assertTrue(vnf.toString().contains("vnfId"));
+    }
+
+}