Tagged Questions
15
votes
3answers
566 views
Add a unit test for each new bug
In my job all developers that resolve a bug have to add a new unit test that warns about this type of bugs (in the case it occours again). If a unit test is not possible (for example, a webpage design ...
3
votes
5answers
188 views
Should the test and the fix be written by different people?
There is a common practice in TDD to write a test before fix to avoid regression and simplify fixing. I just wonder what if the test and fix will be written by different people, total spent time will ...
1
vote
1answer
91 views
Interested in Feedback on QA System Design
I'm in the beginning phases of creating a QA system and I want to make sure that the design decisions that I'm making now make sense and won't bite me in the butt later on. If you have even the ...
1
vote
3answers
285 views
Making Separate Assemblies For Different Types Of Tests For The Same Component?
I was told by a few members here that splitting up my unit tests into different assemblies for different components is the best way to structure unit tests. Now, I have a few questions about that ...
6
votes
3answers
219 views
Long-Term Strategy For Implementing a QA System?
I have been given the task of implementing some QA testing into a massive existing system. We're going to start out with system-level tests and might add unit tests if it is deemed necessary.
I ...