Merge "Refactor code a bit to make status test able running on multiple namespaces"
[testsuite/pythonsdk-tests.git] / src / onaptests / scenario / basic_cnf.py
1 #!/usr/bin/env python
2 """Basic CNF test case."""
3 from onaptests.scenario.scenario_base import ScenarioBase
4 from onaptests.steps.instantiate.vf_module_ala_carte import \
5     YamlTemplateVfModuleAlaCarteInstantiateStep
6
7
8 class BasicCnf(ScenarioBase):
9     """Onboard then instantiate a simple CNF with ONAP."""
10
11     def __init__(self, **kwargs):
12         """Init BasicCnf."""
13         super().__init__('basic_cnf', **kwargs)
14         self.test = YamlTemplateVfModuleAlaCarteInstantiateStep()