templating
Template generator for TestSuite from system requirements.
generate_suite_str(requirements)
Generate a TestSuite template string from a list of requirements.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
requirements
|
list[QASDescriptor]
|
List of system requirements to make into TestCases |
required |
Returns:
| Type | Description |
|---|---|
str
|
TestSuite template string that can be used to instantiate a TestSuite |
Source code in mlte/suite/templating.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | |