Forum Discussion
Thanks Marsha_R . In my case there are multiple projects having the same framework and same test names with shared libraries. which when trying to add as existing item complaining for the 2nd item that the named test already exist :(
Correct, if you have two different Test1 tests, then you can't have them both in the same project. What are you trying to set up? Maybe there's another way to do it.
- arkk10 years agoOccasional Contributor
Thanks Marsha_R. In my case there are only 2 methods that needs to be run and has around 4-5 supporting libraries to run. The whole frame work is duplicated for different work streams as (cloned project under same project suite) I have multiple projects under the same suite now with same naming convention. with different datasheet's and some specific code changes in couple of files of each project.
Now I am trying to organise all the tests (each project has 2 tests) under group and sub groups .. for the whole suite.
What will be the best option ? apart from changing the name of the filename/sub?
Many Thanks
- Marsha_R10 years ago
Champion Level 3
The only other way I see to combine them is to actually combine the code. We use parameters for our datasheets so they can be swapped out easily, and there is probably a way to have the few differences in your code be conditional.
That might be a better practice anyway. Having several copies of MyTest1 can lead to confusion down the line. Which one do I use? If I change some of the common code, do I then have to change it in 3 or 4 other places?
- arkk10 years agoOccasional Contributor
Thanks Marsha_R. In my case the quick fix seems to change the file names :)