Our automation reports the test results in a specific test plan.
Each automation run creates a new build within the test plan.
The automation updates the test case(s) result( referencing the test case name in the test plan which are well known names between Testlink and the automation application.)
Search found 16 matches
- Tue Jul 21, 2009 7:29 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: Automated excecution of testcases
- Replies: 19
- Views: 34489
- Tue Jul 14, 2009 2:09 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: Automated excecution of testcases
- Replies: 19
- Views: 34489
- Mon Apr 20, 2009 8:32 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: Adding a new "Status" beside Pass, Fail, Blocked
- Replies: 38
- Views: 129752
Yes, you're right. You do need to change the colour in the style sheet and add the displayable text in the strings file. I've added a new status that works for reports, charts, etc and did not need to modify any other code but the custom config. Here is what I added for a new status called ready_to_...
- Mon Apr 20, 2009 7:19 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: Adding a new "Status" beside Pass, Fail, Blocked
- Replies: 38
- Views: 129752
- Wed Mar 11, 2009 8:30 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: Results->Charts Presentation after adding new statuses
- Replies: 4
- Views: 6041
- Tue Mar 10, 2009 7:58 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: 1.8 RC5 Execute Tree State colours
- Replies: 4
- Views: 5646
- Tue Mar 10, 2009 1:44 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: JIRA 3.13 and TL 1.8RC5
- Replies: 7
- Views: 8689
Here are the options I used: //Set the bug tracking system Interface to JIRA 3.1.1 /** The DB host to use when connecting to the JIRA db */ define('BUG_TRACK_DB_HOST', 'hostname'); /** The name of the database that contains the jira tables */ define('BUG_TRACK_DB_NAME', 'jiradb_3_13_2'); /** The DB ...
- Mon Mar 09, 2009 6:44 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: 1.8 RC5 Execute Tree State colours
- Replies: 4
- Views: 5646
- Fri Mar 06, 2009 9:53 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: 1.8 RC5 Execute Tree State colours
- Replies: 4
- Views: 5646
1.8 RC5 Execute Tree State colours
I do not like the pastel colours used in the execute tree. I would prefer that the colours be the same as in the Test Result dialog.
Basically, if the failed result is red then it should be red in the tree not pink.
Basically, if the failed result is red then it should be red in the tree not pink.
- Fri Mar 06, 2009 9:42 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: JIRA 3.13 and TL 1.8RC5
- Replies: 7
- Views: 8689
- Wed Feb 18, 2009 9:45 pm
- Forum: XML-RPC API
- Topic: getTestCaseIdByName returns large number of instances
- Replies: 2
- Views: 5908
When I run the same mysql as in testcase.class.php for get_by_name, I am returned 8135 entries from the query Here is the sample of the sql, I used mysql> select distinct NHA.id,NHA.name,NHB.parent_id,TCV.tc_external_id from nodes_hierarchy NHA, nodes_hierarchy NHB, tcversions TCV where NHA.name = '...
- Wed Feb 18, 2009 8:41 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: Changing executed test cases
- Replies: 4
- Views: 6187
- Wed Feb 18, 2009 5:36 pm
- Forum: XML-RPC API
- Topic: getTestCaseIdByName returns large number of instances
- Replies: 2
- Views: 5908
getTestCaseIdByName returns large number of instances
Using 1.8rc4 api
When I look at the response to a getTestCaseIdByName, I see 8000 plus instances of the testcase, all with a different external id. This doesn't make seen to me. Why would there be so many external ids associated with a test case I just created yesterday
When I look at the response to a getTestCaseIdByName, I see 8000 plus instances of the testcase, all with a different external id. This doesn't make seen to me. Why would there be so many external ids associated with a test case I just created yesterday
- Mon Feb 16, 2009 2:49 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: Changing executed test cases
- Replies: 4
- Views: 6187
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 ex...
- Wed Feb 11, 2009 5:31 pm
- Forum: TestLink 1.8 (OBSOLETE => EOL)[LOCKED]
- Topic: Adding new result status
- Replies: 0
- Views: 3824
Adding new result status
After adding a new result status via the custom_config.inc.php file, I found that I needed to modify themes/default/css/testlink.css to handle the colours in the execute tree and history of the test case execution ( colour code the status). I would prefer to handle this css change some where else (l...