Merge "Refactor code a bit to make status test able running on multiple namespaces"
[testsuite/pythonsdk-tests.git] / src / onaptests / scenario / status.py
1 from onaptests.scenario.scenario_base import ScenarioBase
2 from onaptests.steps.cloud.check_status import CheckNamespaceStatusStep
3
4
5 class Status(ScenarioBase):
6     """Retrieve status of Kubernetes resources in the nemaspace."""
7
8     def __init__(self, **kwargs):
9         """Init the testcase."""
10         super().__init__('status', **kwargs)
11         self.test = CheckNamespaceStatusStep()