summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPiotr Borelowski <p.borelowski@partner.samsung.com>2019-06-05 15:15:16 +0200
committerOfir Sonsino <ofir.sonsino@intl.att.com>2019-06-17 07:15:25 +0000
commitfee6481d671d6ae2772a39ff824d1ef38329fc07 (patch)
treea8c8d0a814b69b6d4859e2ab60eecc5d2d67d42c
parent8a3f43a8f314e23267eceb8e9024f27a8bade82b (diff)
Added unit tests for DcaeBeConstants
Improved the unit test coverage in the package org/onap/sdc/dcae/composition/util Issue-ID: SDC-2327 Signed-off-by: Piotr Borelowski <p.borelowski@partner.samsung.com> Change-Id: I42fae4cb59a55340e17e2e96818719116a7a4b35
-rw-r--r--src/test/java/org/onap/sdc/dcae/composition/util/DcaeBeConstantsTest.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/test/java/org/onap/sdc/dcae/composition/util/DcaeBeConstantsTest.java b/src/test/java/org/onap/sdc/dcae/composition/util/DcaeBeConstantsTest.java
new file mode 100644
index 0000000..eaadd27
--- /dev/null
+++ b/src/test/java/org/onap/sdc/dcae/composition/util/DcaeBeConstantsTest.java
@@ -0,0 +1,61 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP SDC
+ * ================================================================================
+ * Copyright (C) 2019 Samsung. All rights reserved.
+ * ================================================================================
+ * 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.sdc.dcae.composition.util;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
+import org.junit.Test;
+
+public class DcaeBeConstantsTest {
+
+ @Test
+ public void testNull() {
+ // when
+ final DcaeBeConstants.LifecycleStateEnum state = DcaeBeConstants.LifecycleStateEnum.findState(null);
+
+ // then
+ assertNull(state);
+ }
+
+ @Test
+ public void testEmptyString() {
+ // when
+ final DcaeBeConstants.LifecycleStateEnum state = DcaeBeConstants.LifecycleStateEnum.findState("");
+
+ // then
+ assertNull(state);
+ }
+
+ @Test
+ public void testAllValues() {
+ for (DcaeBeConstants.LifecycleStateEnum givenState : DcaeBeConstants.LifecycleStateEnum.values()) {
+
+ // when
+ final DcaeBeConstants.LifecycleStateEnum state = DcaeBeConstants.LifecycleStateEnum.findState(givenState.name());
+
+ // then
+ assertEquals(givenState, state);
+ }
+ }
+}