pcl2004_27 发表于 2006-10-25 12:59:46

TestDirector:How to change a test set name?

Description

      I have some test sets that are already being used. I would like to change the name of them to be more consistent with the new naming scheme. How can I do that? When I have tried to rename them the name is greyed out. I thought about just copying them but then I don't get the results of the tests that have been ran copied to new test set.


Solution

      How to rename a test set:
This can be done by running SQL
statements using the Project
administrator.

Open Project Administrator.
Double click on the project.
Run SQL statements to update these tables: cycle, run and testcycl.

The SQL statements are:
update cycle set CY_CYCLE='new name' where CY_CYCLE='old name'
update run set RN_CYCLE='new name' where RN_CYCLE='old name'
update testcycl set TC_CYCLE='new name' where TC_CYCLE='old name'
页: [1]
查看完整版本: TestDirector:How to change a test set name?