aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java
diff options
context:
space:
mode:
authorajay_dp001 <ajay.deep.singh@est.tech>2020-09-22 16:48:31 +0530
committerajay_dp001 <ajay.deep.singh@est.tech>2020-09-22 17:03:25 +0530
commit848989938c1901fb32530e79a5d17c2fc0b930e0 (patch)
treef987aa5b3da774caa9bb166fbb85d9641a632f30 /src/test/java
parentf095a271b67b3f2be3dbdcd00924cac3dd3209ec (diff)
[CLAMP] TOSCA Defined Control Loop PoC Initial Checkin
Issue-ID: CLAMP-930 Signed-off-by: ajay_dp001 <ajay.deep.singh@est.tech> Change-Id: Ic00c2cdf9ac23b69c6b58aadb24ccf6cf24a64c8
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaServiceTemplateTest.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/test/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaServiceTemplateTest.java b/src/test/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaServiceTemplateTest.java
new file mode 100644
index 000000000..f89c78687
--- /dev/null
+++ b/src/test/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaServiceTemplateTest.java
@@ -0,0 +1,33 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2020 Nordix Foundation.
+ * ================================================================================
+ * 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.clamp.controlloop.models.tosca.authorative.concepts;
+
+import org.junit.Test;
+import static org.junit.Assert.assertNotNull;
+
+public class ControlLoopToscaServiceTemplateTest {
+
+ @Test
+ public void testClassDef() {
+ ControlLoopToscaServiceTemplate serviceTemplate = new ControlLoopToscaServiceTemplate();
+ assertNotNull("ControlLoopToscaServiceTemplate is Not null", serviceTemplate);
+ }
+} \ No newline at end of file