Testopia:Documentation:XMLRPC:Code Examples

From MozillaWiki
Jump to: navigation, search

Back to Testopia:Documentation:XMLRPC

Code Examples

Query/List Shortcut

# List all TestCaseRun's where build_id = 1 and case_id = 1 and run_id = 1, and case_run_status = "Failed"

$soapresult = $proxy->call('TestCaseRun.list', { build_id => 1, 
                                                 case_id => 1, 
                                                 run_id => 1, 
                                                 case_run_status => 'FAILED' 
                                               });



Back to the Testopia Main Page