diff options
author | DR695H <dr695h@att.com> | 2019-07-08 17:34:52 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-07-08 17:35:48 -0400 |
commit | 3a8c94568d9fb3c38329a19f11f08be48fc1eadf (patch) | |
tree | 7597cba238aff636862775fb365fe9b93036976d /robotframework-onap/ONAPLibrary/SDNC.py | |
parent | 03dadb9b9ce5c8386079bd47c54cde17f39382c4 (diff) |
dd in sdnc keywords for vcpe
Change-Id: Ib3a630eeb18fdf8418b6e12c4eb781c28d8a3ffa
Issue-ID: TEST-173
Signed-off-by: DR695H <dr695h@att.com>
Diffstat (limited to 'robotframework-onap/ONAPLibrary/SDNC.py')
-rw-r--r-- | robotframework-onap/ONAPLibrary/SDNC.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/robotframework-onap/ONAPLibrary/SDNC.py b/robotframework-onap/ONAPLibrary/SDNC.py new file mode 100644 index 0000000..bd16ae4 --- /dev/null +++ b/robotframework-onap/ONAPLibrary/SDNC.py @@ -0,0 +1,29 @@ +# 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.PreloadSDNCKeywords import PreloadSDNCKeywords +from ONAPLibrary.robotlibcore import HybridCore +from ONAPLibrary.BaseSDNCKeywords import BaseSDNCKeywords + + +class SDNC(HybridCore): + """SDNC is an ONAP testing library for Robot Framework that provides functionality for interacting with the network + controller. """ + + def __init__(self): + self.keyword_implementors = [ + BaseSDNCKeywords(), + PreloadSDNCKeywords() + ] + HybridCore.__init__(self, self.keyword_implementors) |