Where to store automated tests in version control

My company has recently started updating using TFS, version control, and branching strategies. Our current branching strategy is the main "Dev> Main> Release" method, which works well for our small team. However, the problem lies in our automated tests. All our integration tests and user interface tests are written in C # and run in the nightly build process. Trying to keep the source clean and well-groomed, where exactly should we put the automatic test code?

+4
source share
1 answer

You can place automated tests inside each branch. Your automated tests can be combined and processed in the same way as regular code, as it will change for new development.

Another option might be for you to place it where the assembly types and assembly files are located.

It is important to ensure that it is validated in the original control.

+6
source

All Articles