From 5d760031d3aeecff297c6141adfe5d7490cdcbb9 Mon Sep 17 00:00:00 2001 From: vasraz Date: Mon, 15 Feb 2021 19:36:59 +0000 Subject: Implement Attributes/Outputs BE (part 3) This commit includes unit test for new/changed code Change-Id: I619039f99c4a09484df098375067bdceee4636b0 Signed-off-by: Vasyl Razinkov Issue-ID: SDC-3448 --- .../elements/GetOutputValueDataDefinitionTest.java | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 common-be/src/test/java/org/openecomp/sdc/be/datatypes/elements/GetOutputValueDataDefinitionTest.java (limited to 'common-be/src/test') diff --git a/common-be/src/test/java/org/openecomp/sdc/be/datatypes/elements/GetOutputValueDataDefinitionTest.java b/common-be/src/test/java/org/openecomp/sdc/be/datatypes/elements/GetOutputValueDataDefinitionTest.java new file mode 100644 index 0000000000..6c975bd8a2 --- /dev/null +++ b/common-be/src/test/java/org/openecomp/sdc/be/datatypes/elements/GetOutputValueDataDefinitionTest.java @@ -0,0 +1,40 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2021, Nordix Foundation. 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.openecomp.sdc.be.datatypes.elements; + +import static org.hamcrest.CoreMatchers.instanceOf; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.junit.jupiter.api.Assertions.assertNotNull; + +import java.util.HashMap; +import org.junit.jupiter.api.Test; + +class GetOutputValueDataDefinitionTest { + + private final GetOutputValueDataDefinition testInstance = new GetOutputValueDataDefinition(); + + @Test + void testCtor() throws Exception { + assertThat(testInstance, instanceOf(GetOutputValueDataDefinition.class)); + assertThat(new GetOutputValueDataDefinition(new HashMap<>()), instanceOf(GetOutputValueDataDefinition.class)); + assertThat(new GetOutputValueDataDefinition(testInstance), instanceOf(GetOutputValueDataDefinition.class)); + } + +} -- cgit 1.2.3-korg