diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-03-28 14:39:05 +0100 |
---|---|---|
committer | Christophe Closset <christophe.closset@intl.att.com> | 2021-03-29 07:15:14 +0000 |
commit | 4014cbcbe3a61391fa5f7de9f42ec247ca493979 (patch) | |
tree | 88435c882896b582c81b964ce98e160f00c8baf2 /openecomp-be/lib/openecomp-tosca-lib | |
parent | 04c236567737c965545f64c9542a7d75ed6f9046 (diff) |
Improve test coverage (common)
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3428
Change-Id: I60862879fc09a81369d6e5fdf9f3c985994b163e
Diffstat (limited to 'openecomp-be/lib/openecomp-tosca-lib')
-rw-r--r-- | openecomp-be/lib/openecomp-tosca-lib/src/test/java/org/openecomp/sdc/tosca/datatypes/model/RequirementDefinitionTest.java | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/openecomp-be/lib/openecomp-tosca-lib/src/test/java/org/openecomp/sdc/tosca/datatypes/model/RequirementDefinitionTest.java b/openecomp-be/lib/openecomp-tosca-lib/src/test/java/org/openecomp/sdc/tosca/datatypes/model/RequirementDefinitionTest.java deleted file mode 100644 index 9f6bd25038..0000000000 --- a/openecomp-be/lib/openecomp-tosca-lib/src/test/java/org/openecomp/sdc/tosca/datatypes/model/RequirementDefinitionTest.java +++ /dev/null @@ -1,75 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * SDC - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. 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========================================================= - * Modifications copyright (c) 2019 Nokia - * ================================================================================ - */ - -package org.openecomp.sdc.tosca.datatypes.model; - -import org.junit.Assert; -import org.junit.Test; -import org.onap.sdc.tosca.datatypes.model.NodeType; -import org.onap.sdc.tosca.datatypes.model.RequirementDefinition; -import org.onap.sdc.tosca.services.YamlUtil; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters; -import static org.hamcrest.MatcherAssert.assertThat; - -/** - * @author shiria - * @since September 07, 2016. - */ -public class RequirementDefinitionTest { - @Test - public void shouldHaveValidGettersAndSetters() { - assertThat(RequirementDefinition.class, hasValidGettersAndSetters()); - } - - @Test - public void cloneTest() { - RequirementDefinition reqDef1 = new RequirementDefinition(); - reqDef1.setNode("node1"); - reqDef1.setRelationship("my Relationship"); - reqDef1.setCapability("capabilities"); - reqDef1.setOccurrences(new Object[]{1, 1}); - - RequirementDefinition reqDef2 = reqDef1.clone(); - NodeType nodeType = new NodeType(); - - List<Map<String, RequirementDefinition>> requirements = new ArrayList<>(); - Map<String, RequirementDefinition> reqMap1 = new HashMap<>(); - reqMap1.put("req1", reqDef1); - requirements.add(reqMap1); - Map<String, RequirementDefinition> reqMap2 = new HashMap<>(); - reqMap2.put("req2", reqDef2); - requirements.add(reqMap2); - nodeType.setRequirements(requirements); - - String yamlString = new YamlUtil().objectToYaml(nodeType); - Boolean passResult = !yamlString.contains("&") && !yamlString.contains("*"); - Assert.assertEquals(true, passResult); - } - - -} |