Unit test for DependencyTypes.java 91/36691/2
authorshubhada <SV00449682@techmahindra.com>
Mon, 19 Mar 2018 11:54:04 +0000 (17:24 +0530)
committerTakamune Cho <tc012c@att.com>
Mon, 19 Mar 2018 14:11:28 +0000 (14:11 +0000)
Unit test for DependencyTypes.java
Sonar-Link:
https://sonar.onap.org/code?id=org.onap.appc%3Aappc&selected=org.onap.appc%3Aappc-dg-dependency-model%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Fdg%2Fobjects%2FDependencyTypes.java

Change-Id: I163105492a11a8f9e9657562812e829f17fc149e
Issue-ID: APPC-758
Signed-off-by: shubhada <SV00449682@techmahindra.com>
appc-dg/appc-dg-shared/appc-dg-dependency-model/src/test/java/org/onap/appc/dg/objects/TestDependencyTypes.java [new file with mode: 0644]

diff --git a/appc-dg/appc-dg-shared/appc-dg-dependency-model/src/test/java/org/onap/appc/dg/objects/TestDependencyTypes.java b/appc-dg/appc-dg-shared/appc-dg-dependency-model/src/test/java/org/onap/appc/dg/objects/TestDependencyTypes.java
new file mode 100644 (file)
index 0000000..87594a4
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+* ============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.dg.objects;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class TestDependencyTypes {
+
+    private DependencyTypes dependencyTypes = DependencyTypes.RESOURCE;
+
+    @Test
+    public void testName() {
+        Assert.assertEquals("RESOURCE", dependencyTypes.name());
+    }
+
+    @Test
+    public void testEqual() {
+        Assert.assertTrue(dependencyTypes.equals(DependencyTypes.RESOURCE));
+        Assert.assertFalse(dependencyTypes.equals(null));
+    }
+    @Test
+    public void testFindByString() {
+        DependencyTypes dependencyTypes = DependencyTypes.findByString("RESOURCE");
+        Assert.assertEquals(DependencyTypes.RESOURCE, dependencyTypes);
+    }
+
+    @Test
+    public void testFindByString_EmptyString() {
+        DependencyTypes dependencyTypes = DependencyTypes.findByString("dfgdfd");
+        Assert.assertEquals(null, dependencyTypes);
+    }
+}