Hi,
is it possible to change an already executed test case? I want to add some notes.
Thank you
Changing executed test cases
Moderators: Amaradana, TurboPT, TL Developers
There are 2 options you can configure depending on what you want to do.
// ENABLED -> user can edit executed tc versions
// DISABLED -> editing of executed tc versions is blocked. [STANDARD BEHAVIOUR]
$tlCfg->testcase_cfg->can_edit_executed = ENABLED;
// 1 -> user can edit execution notes, on old executions (Attention: user must have test case execution right)
// DISABLED -> no edit allowed [STANDARD BEHAVIOUR]
$tlCfg->exec_cfg->edit_notes = ENABLED;
// ENABLED -> user can edit executed tc versions
// DISABLED -> editing of executed tc versions is blocked. [STANDARD BEHAVIOUR]
$tlCfg->testcase_cfg->can_edit_executed = ENABLED;
// 1 -> user can edit execution notes, on old executions (Attention: user must have test case execution right)
// DISABLED -> no edit allowed [STANDARD BEHAVIOUR]
$tlCfg->exec_cfg->edit_notes = ENABLED;
Thank you. That's what I wanted to know. We will try it.
kcurran wrote:There are 2 options you can configure depending on what you want to do.
// ENABLED -> user can edit executed tc versions
// DISABLED -> editing of executed tc versions is blocked. [STANDARD BEHAVIOUR]
$tlCfg->testcase_cfg->can_edit_executed = ENABLED;
// 1 -> user can edit execution notes, on old executions (Attention: user must have test case execution right)
// DISABLED -> no edit allowed [STANDARD BEHAVIOUR]
$tlCfg->exec_cfg->edit_notes = ENABLED;