Page 1 of 1
Bulk test execution results submission ?
Posted: Tue Aug 17, 2010 3:12 pm
by zeevikn
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.
Re: Bulk test execution results submission ?
Posted: Thu Aug 19, 2010 3:54 pm
by fman
>> 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
Re: Bulk test execution results submission ?
Posted: Sun Aug 22, 2010 9:33 am
by zeevikn
thanks for the reply.
fman wrote:you can also try to use TL-APi (XML-RPC) to send results to TL from a program/script
I just posted this exact HOWTO question
http://www.teamst.org/forum/viewtopic.php?f=10&t=3441