Model.hm_getmethodinfo#
- Model.hm_getmethodinfo(type)#
Returns method information from the stress tool.
- Parameters:
type (hwString) – The type of information to return. Valid values are categories, filenames, names and types.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:methodInfo (list of strings)
Example#
Get the list of method types#import hm import hm.entities as ent model = hm.Model() _, result = model.hm_getmethodinfo(type="types") print("methodInfo", result.methodInfo)