Hi,
Running into a brick wall on this one and was hoping that someone would have seen this before.
We are attempting to create a test plan, containing all design steps, for a specific grouping of tests. The grouping we are using is a test set (as opposed to all tests in a folder in the Test Plan). The way we are trying to create the link right now is through the release/cycle. We assign a cycle to the test set and then try to pull the tests and design steps with the target cycle (CY_ASSIGN_RCYC) entity. Perhaps we are over complicating it though.
I've tried a number of things based on other cases I've read. The following produces a complete view, but doesn't stop at the assigned cycle (1005) below - it brings back everything (though it says its only bringing back 1005).
select
ts_name TST,
STEP.ST_TEST_ID,
STEP.ST_STATUS STEP,
STEP.ST_EXPECTED STEP,
STEP.ST_STEP_NAME STEP,
STEP.ST_ACTUAL STEP,
CYCL_FOLD.CF_ITEM_NAME
from step, test, CYCL_FOLD
where st_test_id = ts_test_id and CF_ASSIGN_rcyc = '1005'
I've tried another one with a mixture of joins, but while it seems to pull only from the proper cycle, it doesn't grab each of the test steps (some are missing all, or a number of steps).
Any ideas would be much appreciated.
Thanks,
Don