diff options
author | vasraz <vasyl.razinkov@est.tech> | 2020-03-24 12:29:04 +0000 |
---|---|---|
committer | Ofir Sonsino <ofir.sonsino@intl.att.com> | 2020-03-26 06:42:01 +0000 |
commit | 29ef7edbf694dea1a33a7ddd97b7250d2ec1f61e (patch) | |
tree | 23f04a3efc5e733ad5e283c897b864c5e746f6f5 /catalog-model/src/test | |
parent | bca8dd9ac181bde35c9f89766e86855d9ddd2102 (diff) |
Increase test coverage
Change-Id: I90606d768c55ad13aa9df62bc4d3f533206db1bc
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-2833
Diffstat (limited to 'catalog-model/src/test')
-rw-r--r-- | catalog-model/src/test/java/org/openecomp/sdc/be/model/RequirementDefinitionTest.java | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/catalog-model/src/test/java/org/openecomp/sdc/be/model/RequirementDefinitionTest.java b/catalog-model/src/test/java/org/openecomp/sdc/be/model/RequirementDefinitionTest.java new file mode 100644 index 0000000000..9d3f4a9b9f --- /dev/null +++ b/catalog-model/src/test/java/org/openecomp/sdc/be/model/RequirementDefinitionTest.java @@ -0,0 +1,47 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2020, 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.model; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; +import org.openecomp.sdc.be.datatypes.elements.RequirementDataDefinition; + +public class RequirementDefinitionTest { + + @Test + public void testRequirementDefinition() { + final RequirementDefinition testSubject = new RequirementDefinition(); + assertThat(testSubject).isNotNull().isInstanceOf(RequirementDefinition.class); + } + + @Test + public void testRequirementDefinition_clone() { + final RequirementDefinition testSubject = new RequirementDefinition(new RequirementDefinition()); + assertThat(testSubject).isNotNull().isInstanceOf(RequirementDefinition.class); + } + + @Test + public void testRequirementDefinition_fromRequirementDataDefinition() { + final RequirementDefinition testSubject = new RequirementDefinition(new RequirementDataDefinition()); + assertThat(testSubject).isNotNull().isInstanceOf(RequirementDefinition.class); + } +} |