diff options
Diffstat (limited to 'src/onaptests/scenario/status.py')
-rw-r--r-- | src/onaptests/scenario/status.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/onaptests/scenario/status.py b/src/onaptests/scenario/status.py index 79ce0c6..ed27975 100644 --- a/src/onaptests/scenario/status.py +++ b/src/onaptests/scenario/status.py @@ -1,24 +1,21 @@ import logging import time -from xtesting.core import testcase + from onapsdk.configuration import settings from onapsdk.exceptions import SDKException - +from onaptests.scenario.scenario_base import ScenarioBase from onaptests.steps.cloud.check_status import CheckNamespaceStatusStep from onaptests.utils.exceptions import OnapTestException -class Status(testcase.TestCase): +class Status(ScenarioBase): """Retrieve status of Kubernetes resources in the nemaspace.""" __logger = logging.getLogger(__name__) def __init__(self, **kwargs): """Init the testcase.""" - if "case_name" not in kwargs: - kwargs["case_name"] = 'status' - super().__init__(**kwargs) - self.__logger.debug("Status check init started") + super().__init__('status', **kwargs) self.test = CheckNamespaceStatusStep( cleanup=settings.CLEANUP_FLAG) self.start_time = None |