summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/ONAPLibrary/SDC.py
diff options
context:
space:
mode:
authorDR695H <dr695h@att.com>2019-07-10 19:09:20 -0400
committerDR695H <dr695h@att.com>2019-07-10 19:09:20 -0400
commite197f3e8115aae13a921e5502936c1aced974617 (patch)
treeef324e178aa63dc5bb944225ccdfd5a487abb584 /robotframework-onap/ONAPLibrary/SDC.py
parent843119faf0b3fdce6c334f616a0cc66cfab69d1a (diff)
add in sdc keywords
Issue-ID: TEST-173 Change-Id: Ie198892d6e0605753103ab8779f3823673ce5b91 Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/SDC.py')
-rw-r--r--robotframework-onap/ONAPLibrary/SDC.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/robotframework-onap/ONAPLibrary/SDC.py b/robotframework-onap/ONAPLibrary/SDC.py
new file mode 100644
index 0000000..d3dd9b3
--- /dev/null
+++ b/robotframework-onap/ONAPLibrary/SDC.py
@@ -0,0 +1,27 @@
+# Copyright 2019 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.
+
+from ONAPLibrary.robotlibcore import HybridCore
+from ONAPLibrary.BaseSDCKeywords import BaseSDCKeywords
+
+
+class SDC(HybridCore):
+ """SDC is an ONAP testing library for Robot Framework that provides functionality for interacting with the serivce
+ orchestrator. """
+
+ def __init__(self):
+ self.keyword_implementors = [
+ BaseSDCKeywords()
+ ]
+ HybridCore.__init__(self, self.keyword_implementors)