Bulk test execution results submission ?

LATEST Official version.
Questions and discussions - NO ISSUES
FOR ISSUES => http://mantis.testlink.org

Moderators: Amaradana, TurboPT, TL Developers

Post Reply
zeevikn
Advanced user
Posts: 18
Joined: Tue Aug 17, 2010 3:08 pm

Bulk test execution results submission ?

Post 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.
fman
Member of TestLink Community
Posts: 3123
Joined: Tue Nov 15, 2005 7:19 am

Re: Bulk test execution results submission ?

Post 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
zeevikn
Advanced user
Posts: 18
Joined: Tue Aug 17, 2010 3:08 pm

Re: Bulk test execution results submission ?

Post 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
Post Reply