Tests are running through an automated system.
I do not wish the test executor to sit and enter the results one-by-one.
Is it possible to check several tests and mark all as passed / failed ?
Is it possible to mark a test suite (with all of its test cases) as passed / failed ?
Thanks,
Zeevik.
Bulk test execution results submission ?
Moderators: Amaradana, TurboPT, TL Developers
Re: Bulk test execution results submission ?
>> Is it possible to mark a test suite (with all of its test cases) as passed / failed ?
you can do this, enable/disabling of this feature is controlled by parameter :
// Controls what happens on right frame when user clicks on a testsuite on tree.
// ENABLED -> show all test cases presents on test suite and children test suite.
// DISABLED -> nothing happens, to execute a test case you need to click on test case
$tlCfg->exec_cfg->show_testsuite_contents = DISABLED;
on config.inc.php
do following
copt custom_config.inc.php.example as custom_config.inc.php
copy the line
$tlCfg->exec_cfg->show_testsuite_contents = ENABLED;
you can also try to use TL-APi (XML-RPC) to send results to TL from a program/script
you can do this, enable/disabling of this feature is controlled by parameter :
// Controls what happens on right frame when user clicks on a testsuite on tree.
// ENABLED -> show all test cases presents on test suite and children test suite.
// DISABLED -> nothing happens, to execute a test case you need to click on test case
$tlCfg->exec_cfg->show_testsuite_contents = DISABLED;
on config.inc.php
do following
copt custom_config.inc.php.example as custom_config.inc.php
copy the line
$tlCfg->exec_cfg->show_testsuite_contents = ENABLED;
you can also try to use TL-APi (XML-RPC) to send results to TL from a program/script
Re: Bulk test execution results submission ?
thanks for the reply.
http://www.teamst.org/forum/viewtopic.php?f=10&t=3441
I just posted this exact HOWTO questionfman wrote:you can also try to use TL-APi (XML-RPC) to send results to TL from a program/script

http://www.teamst.org/forum/viewtopic.php?f=10&t=3441