diff options
author | Sindhuri.A <arcot.sindhuri@huawei.com> | 2018-09-19 20:24:35 +0530 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2018-09-24 10:27:03 +0000 |
commit | eab12e17e81f0a7a2ea6238ab588e5b1b8c9c89b (patch) | |
tree | 75a12cd201a41b4d0f5df774ace539dd5b134e34 /catalog-be/src | |
parent | cd25e7c22e227b1123834e132d53f44a1924786b (diff) |
UT for catalog be ToscaTypeImportDataImpl
UT for catalog be ToscaTypeImportDataImpl class
Issue-ID: SDC-1775
Change-Id: I072b5f123553dc1fa0c8d9961317720d9ebd82f4
Signed-off-by: Sindhuri.A <arcot.sindhuri@huawei.com>
Diffstat (limited to 'catalog-be/src')
-rw-r--r-- | catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/model/ToscaTypeImportDataImplTest.java | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/model/ToscaTypeImportDataImplTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/model/ToscaTypeImportDataImplTest.java new file mode 100644 index 0000000000..a09734d8a8 --- /dev/null +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/components/impl/model/ToscaTypeImportDataImplTest.java @@ -0,0 +1,49 @@ +/* + + * Copyright (c) 2018 Huawei Intellectual Property. + + * + + * 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. + + */ +package org.openecomp.sdc.be.components.impl.model; + +import org.junit.Test; +import org.openecomp.sdc.be.model.normatives.ToscaTypeMetadata; + +import java.util.HashMap; +import java.util.Map; + +import static org.junit.Assert.assertEquals; + +public class ToscaTypeImportDataImplTest { + + @Test + public void testToscaTypeImportData() { + Map<String, ToscaTypeMetadata> toscaTypeMetadata = new HashMap<>(); + ToscaTypeImportData test = new ToscaTypeImportData("toscaTypeYaml",toscaTypeMetadata); + assertEquals(test.getToscaTypesYml(), "toscaTypeYaml") ; + assertEquals(test.getToscaTypeMetadata(),toscaTypeMetadata); + } +} |