Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 986 Bytes

File metadata and controls

30 lines (21 loc) · 986 Bytes

TestUsage

Properties

Name Type Description Notes
used_agents List[str] The agents used by the current test [optional]
used_licenses Dict[str, int] Feature types used by the current test and their respective counts [optional]

Example

from cyperf.models.test_usage import TestUsage

# TODO update the JSON string below
json = "{}"
# create an instance of TestUsage from a JSON string
test_usage_instance = TestUsage.from_json(json)
# print the JSON string representation of the object
print(TestUsage.to_json())

# convert the object into a dict
test_usage_dict = test_usage_instance.to_dict()
# create an instance of TestUsage from a dict
test_usage_from_dict = TestUsage.from_dict(test_usage_dict)

[Back to Model list] [Back to API list] [Back to README]