Answer the question
In order to leave comments, you need to log in
Structure for unit tests?
How to structure a project with tests correctly?
Is it acceptable to place class tests in the same structure as in the main project?
Well, i.e.
MainProject/Program.cs
and the test for this class would be
MainProject.Tests/ProgramTest.cs
MainProject/Shared/Helper.cs
and the test for this class would be
MainProject.Tests/SharedTests/HelperTest.cs
Answer the question
In order to leave comments, you need to log in
I would choose the first option, and I would solve the issue with integration tests by dividing them into suites (you can put them in different folders.
That is, it will be like this:
and tests for this class will be
MainProject.Tests/Unit/ProgramTest.cs
MainProject.Tests/Integration/ProgramTest.robot
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question