Is there any way to customize or add a new state of execution? The idea is to include an intermediate state "Not completed".
Thanks.
Add a new state of execution
Moderators: Amaradana, TurboPT, TL Developers
Re: Add a new state of execution
refer help files to add new status
Thanks,
TesterWorld
Http://amartester.blogspot.com
TesterWorld
Http://amartester.blogspot.com
Re: Add a new state of execution
I put something about it in V1.8. You may want to check it out. Go to the end of post to see my last reply:
http://www.teamst.org/forum/viewtopic.php?f=9&t=1710
Cheers,
AO
http://www.teamst.org/forum/viewtopic.php?f=9&t=1710
Cheers,
AO
Re: Add a new state of execution
What is file name we need to edit in V1.9.1?
Re: Add a new state of execution
Hi,
To add a new state of play, simply add / edit custom_config.inc.php, and add the following lines according to their needs for execution "Status":
$tlCfg->results['status_code'] = array (
"failed" => 'f',
"blocked" => 'b',
"passed" => 'p',
"not_run" => 'n',
"not_available" => 'x',
"unknown" => 'u',
"all" => 'a'
);
$tlCfg->results['status_label'] = array(
"passed" => "test_status_passed",
"failed" => "test_status_failed",
"blocked" => "test_status_blocked",
"not_run" => "test_status_not_run",
"all" => "test_status_all_status",
"not_available" => "test_status_not_available",
"unknown" => "test_status_unknown"
);
$tlCfg->results['status_label_for_exec_ui'] = array(
"passed" => "test_status_passed",
"failed" => "test_status_failed",
"blocked" => "test_status_blocked",
"not_run" => "test_status_not_run",
"not_available" => "test_status_not_available"
);
To add a new state of play, simply add / edit custom_config.inc.php, and add the following lines according to their needs for execution "Status":
$tlCfg->results['status_code'] = array (
"failed" => 'f',
"blocked" => 'b',
"passed" => 'p',
"not_run" => 'n',
"not_available" => 'x',
"unknown" => 'u',
"all" => 'a'
);
$tlCfg->results['status_label'] = array(
"passed" => "test_status_passed",
"failed" => "test_status_failed",
"blocked" => "test_status_blocked",
"not_run" => "test_status_not_run",
"all" => "test_status_all_status",
"not_available" => "test_status_not_available",
"unknown" => "test_status_unknown"
);
$tlCfg->results['status_label_for_exec_ui'] = array(
"passed" => "test_status_passed",
"failed" => "test_status_failed",
"blocked" => "test_status_blocked",
"not_run" => "test_status_not_run",
"not_available" => "test_status_not_available"
);
Re: Add a new state of execution
Is anyone having trouble making a new state report in a "best case" manner, like it does for 'blocked'? My "how to make new exec status best case in chart" posting has more details http://www.teamst.org/forum/viewtopic.php?f=11&t=6689