diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/onaptests/steps/loop/clamp.py | 10 | ||||
-rw-r--r-- | src/onaptests/steps/onboard/clamp.py | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/onaptests/steps/loop/clamp.py b/src/onaptests/steps/loop/clamp.py index e601772..3a5c1ad 100644 --- a/src/onaptests/steps/loop/clamp.py +++ b/src/onaptests/steps/loop/clamp.py @@ -32,6 +32,16 @@ class ClampStep(YamlTemplateBaseStep): self.loop_instance = None @property + def description(self) -> str: + """Step description.""" + return "Retrieve TCA, Policy then create a loop" + + @property + def component(self) -> str: + """Component name.""" + return "CLAMP" + + @property def yaml_template(self) -> dict: """Step YAML template. diff --git a/src/onaptests/steps/onboard/clamp.py b/src/onaptests/steps/onboard/clamp.py index 8f6b6bf..ba91985 100644 --- a/src/onaptests/steps/onboard/clamp.py +++ b/src/onaptests/steps/onboard/clamp.py @@ -27,6 +27,16 @@ class OnboardClampStep(YamlTemplateBaseStep): # self.set_logger() @property + def description(self) -> str: + """Step description.""" + return "Onboard service in SDC including a TCA blueprint for CLAMP." + + @property + def component(self) -> str: + """Component name.""" + return "SDC" + + @property def yaml_template(self) -> dict: """Step YAML template. |