Hello,
I have three projects: A, B and C. The projects have common features that I'd like to test without having to duplicate the test.
The architecture of the Test Repository is common to all three projects and the Main Test Project. I'd like Test Repository A to contain tests specific to Project A and tests common to Projects A, B and C.
In the following image, I suppose I'll have to make a main test project containing my common tests that I'd like to share with my A, B and C projects. The test execution will be assigned per project, and this main project can be considered as "Abstract".
What would be the best solution?