diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-03-28 20:38:15 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-04-04 10:26:22 +0200 |
commit | 457321c2c8ed7e8dcb1daccb6d2fd9814e6a98ca (patch) | |
tree | 47a5ab66f98eed8fb238a7fffc6788436771bef7 /functest/core/testcase.py | |
parent | 62661e25ab10f1fea79b8c1e19c6d493b3e12b68 (diff) |
Add case_name as constructor arg
It allows managing multiple TestCase names with only one TestCase
module. It is mainly required by odl which implements:
- odl,
- odl_netvirt,
- fds.
It also renames case to case_name in Features to conform with
TestCases.
JIRA: FUNCTEST-762
Change-Id: Ie254f754a0ea3077a8afda1c470528d38c79478f
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/core/testcase.py')
-rw-r--r-- | functest/core/testcase.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/functest/core/testcase.py b/functest/core/testcase.py index b540cfb5..8c5fd647 100644 --- a/functest/core/testcase.py +++ b/functest/core/testcase.py @@ -27,10 +27,10 @@ class TestCase(object): logger = ft_logger.Logger(__name__).getLogger() - def __init__(self): + def __init__(self, case_name=""): self.details = {} self.project_name = "functest" - self.case_name = "" + self.case_name = case_name self.criteria = "" self.start_time = "" self.stop_time = "" @@ -87,6 +87,7 @@ class TestCase(object): It could be overriden if the common implementation is not suitable. The following attributes must be set before pushing the results to DB: + * project_name, * case_name, * criteria, * start_time, |