vote up 7 vote down star
2

As I understood from some Q&A sessions (see this and this), unit tests should be written by developers.

At my previous workplace we tried to give this task to a QA Engineer, but it didn't work. May be because it was already a middle of a project and he didn't have a chance to do a significant code coverage or may be because of another reason.

Do you think it's a bad idea to free a developer from writing unit tests in a such way?

flag

9 Answers

vote up 12 vote down check

Generally, I think it is a bad idea. Unit tests guide the developer to write modular (and therefore useful, reusable) code because their code needs to work with both the production system and the test code.

link|flag
Agreed, definitely a bad idea. Even for putting tests into old systems, which generally involves huge amounts of refactoring. – Rob Stevenson-Leggett Jan 14 at 12:06
vote up 0 vote down

I think it's generally bad for QA to write unit tests. Unit tests are code, they are tightly related to how the dev code is constructed. For this reason, the developer knows best what tests would make the most sense.

On the other hand, I believe QA should stay as close as possible to unit testing. QA needs a good relationship with the dev and try to understand the code design. Why? When a developer is writing unit tests, the focus is still on development, not testing. You cannot trust (not in the bad sense) a developer to come up with the best test cases and that she has good coverage. Since QA is specialized in testing, it may be a good idea to keep QA and dev as close as possible during unit testing.

link|flag
vote up 0 vote down

I don't think it would be bad, I just don't think it would be possible. If the code wasn't written test first it probably isn't testable.

Is the QA person doing to refactor the code to make it testable?

If so, then that's fine, and I don't care what their title is. If they're not, then I doubt they'll be successful.

link|flag
vote up 1 vote down

Where I work we all do unit testing but not on your own code. You still write testable code and will still focus on quality. Developers become more familiar with areas of the software they are not working on. Everybody knows the code base and can take over from other developers.

For a non developer of the software to write unit testing I agree with all the other answers. It is a bad idea.

In your question you said that you had one person doing the unit testing. Good unit testing requires a lot of effort depending on the test coverage required. It is anywhere from 50% to 100% of the level of effort of the development team. One person testing a lot of developers code will be totally overwhelmed.

link|flag
Doing unit testing for a code of other developers - sounds interesting. It reminds me a little bit a pair programming, where by changing pairs you eliminate a situation when a code belongs to a single developer – legesh Jan 14 at 16:24
vote up 1 vote down

Having a person dedicated to unit-testing in a team can seem interesting at first sight ; as he will review all the code. This also would alleviate the risk of having one developer making the same error in the production code and in the unit tests.

However, in order to be unit-tested, the code has to be testable ; what can he done when the code it receives is untestable ? Rewrite it ? Refactor it ? Without Unit Tests ?

In short, I think this would not be such a good idea.

link|flag
vote up 8 vote down

There's a subtle but important difference between the intent of unit tests and QA tests: QA testing validates functionality; unit testing validates design. That is, the outer view contrasted with the inner view of the product.

QA people are unfamiliar with the internal design of the product, which is intentional because they have to mimic the user's perspective. Developers, on the other hand, know intimately the inner workings and it is to them a mechanism to validate design would be meaningful, if at all.

Hence, it is absolutely natural that developers not the QA folks write unit tests.

link|flag
"There's a subtle but important difference between the intent of unit tests and QA tests: QA testing validates functionality; unit testing validates design." I'd add that unit tests should test both of these things – MrWiggles Jan 14 at 11:50
When I said 'functionality' I actually meant from the end user's point of view. – Frederick Jan 14 at 11:53
vote up 6 vote down

This depends on how you plan to implement your testing workflow.

Bad:

The developer writes his code and the other person then tries to add unit tests to test this code. The problem here is that the developer will not care to write code that is easily testable. Much time may be spent either trying to adapt the unit tests to the badly testable code, or time is wasted by refactoring the original code afterwards to be better testable.

Good:

Another person than the developer writes the unit tests and the developer writes his code afterwards, trying to get all those tests on green. This may be a bit awkward at first because some basic interfaces have to exists to implement the tests against, but the basic interfaces should be defined in the design doc, so the developer can prepare the interfaces for the test developer. The advantage is, that the test developer tries to write as many tests he can think of independent of the real implementation, while the original developer would have written tests depending on the internals of his code, not imagining other problems. Else, he would have warded against them in his implementation already.

The "good" approach worked well on two of my projects, but we used an untyped language (Smalltalk) where we only needed to agree on the class names to get the tests running. In Java you have to implement at least an interface so call functions.

link|flag
Very good point, made me change my vote. – Rob Stevenson-Leggett Jan 14 at 12:07
Thanks for the insight. It is good to hear someone trying something a little different to the "text book" approach to unit testing - especially with positive results. – GH Jan 14 at 12:26
vote up 2 vote down

The developer has to write the unit tests. Otherwise it is like the developer doesn't have to care about the quality. In addition, unit tests help the developer to write better code.

Maybe you've heard about TDD? "Test Driven Development" is a really a good practice for development. Its main purpose is to develop unit tests before write the actual code (which is a strange thing, when we start using TDD, I admit)...

link|flag
vote up 2 vote down

Yes.

A developer writes the unittest te ensure that the "unit" does what it suppose to do. A QA person test the whole application.

Besides, a unit test is code, and developers write code. Most of the times QA engineers don't write code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.