aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/scenario/cds_resource_resolution.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/scenario/cds_resource_resolution.py')
-rw-r--r--src/onaptests/scenario/cds_resource_resolution.py13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/onaptests/scenario/cds_resource_resolution.py b/src/onaptests/scenario/cds_resource_resolution.py
index cff04d8..7bf2f94 100644
--- a/src/onaptests/scenario/cds_resource_resolution.py
+++ b/src/onaptests/scenario/cds_resource_resolution.py
@@ -6,11 +6,11 @@ import time
from onapsdk.configuration import settings
from onapsdk.exceptions import SDKException
-from xtesting.core import testcase
-
+from onaptests.scenario.scenario_base import ScenarioBase
from onaptests.steps.base import BaseStep
from onaptests.steps.onboard.cds import CbaProcessStep
-from onaptests.steps.simulator.cds_mockserver import CdsMockserverCnfConfigureStep
+from onaptests.steps.simulator.cds_mockserver import \
+ CdsMockserverCnfConfigureStep
from onaptests.utils.exceptions import OnapTestException
@@ -58,17 +58,14 @@ class CDSResourceResolutionStep(BaseStep):
return "PythonSDK-tests"
-class CDSResourceResolution(testcase.TestCase):
+class CDSResourceResolution(ScenarioBase):
"""Enrich simple blueprint using CDS blueprintprocessor."""
__logger = logging.getLogger(__name__)
def __init__(self, **kwargs):
"""Init CDS resource resolution use case."""
- if "case_name" not in kwargs:
- kwargs["case_name"] = 'basic_cds'
- super().__init__(**kwargs)
- self.__logger.debug("CDS resource resolution initialization")
+ super().__init__('basic_cds', **kwargs)
self.test = CDSResourceResolutionStep(
cleanup=settings.CLEANUP_FLAG)
self.start_time = None