vote up 1 vote down star

Possible Duplicates:
QA to dev ratio
What is a good ratio of developers to testers?

From The Joel Test: 12 Steps to Better Code:

If your team doesn't have dedicated testers, at least one for every two or three programmers, you are either shipping buggy products, or you're wasting money by having $100/hour programmers do work that can be done by $30/hour testers. Skimping on testers is such an outrageous false economy that I'm simply blown away that more people don't recognize it.

Is one tester for every 2 - 3 developers a good ratio?

What are your thoughts and experiences on finding a good ratio?

How should the ratio be adjusted for project size?

flag
1  
Duplicate: stackoverflow.com/questions/469444/… – Wilka Jul 14 at 21:53

closed as exact duplicate by Yuval A, schnaader, Fredrik Mörk, Dave Jarvis, John Saunders Jul 15 at 0:37

3 Answers

vote up 2 vote down check

If you want every single bugfix tested thoroughly, I think one tester per two programmers is reasonable. Consider a programmer fixing a bug: He takes a standard database he has lying around somewhere, reproduces the bug, fixes it and checks if it was fixed for his setup.

A tester would then have to check the bug on other database types (say your product supports MSSQL 2008 and 2005, Oracle and/or Postgres), and on other systems (windows, mac, linux), perhaps on other product versions (basic, pro, enterprise editions, etc), and so on.

I could very well imagine this testing process takes about as long as fixing the bug itself.

link|flag
vote up 0 vote down

Depends a lot on the type of application that you are developing and the number of platforms that you are targeting. I can imagine you need less testers if you have a single web application deployed in one server, compared to having a shrink-wrapped product that can be deployed in all sorts of windows with different settings.

Joel's application is based on a home-grown language called wasabi, that has to support many server setups and scripting languages (wasabi compiles to a scripting language), so I guess one tester for 2 developers is reasonable.

link|flag
vote up 1 vote down

Here's a good article which discusses the different scenarios:

http://www.infoq.com/news/2009/01/tester-to-developer-ratio

link|flag

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