vote up 4 vote down star
2

Other than the number of bugs found, how do you measure software development quality? I'm looking for something on the positive side.

flag

25% accept rate
Perhaps you could be a little clearer. The question is somewhat vague as to exactly what you're looking for. – Brian Warshaw Sep 8 '08 at 20:41

13 Answers

vote up 0 vote down
  • MTTB? (Mean-time between bugs)
  • how much the customer likes it?
link|flag
Wouldn't MTTB be Mean Time To Bug? :) – Craig Sep 8 '08 at 21:06
vote up 6 vote down

Looking for metrics? They don't work. Are your users happy? Then you know...

link|flag
Yes. You need happy customers. But how do you quantify their happiness. How can you use their happiness to evaluate any refactoring work? Only way is to have an extensive suite of unit tests to prove that your refactoring hasn't broken anything. – Rob Wells Sep 8 '08 at 21:11
What's the point of having bullet-proof unit tests if you can't get the features right, and your users spend their day complaining about your tool? – Carl Seleborg Sep 8 '08 at 21:26
vote up 0 vote down

Of course, no idea how you'd measure any of these, but I suspect these are important metrics too:

  • How much other developers like working on it?
  • Hoe easy it is to maintain?
link|flag
vote up 7 vote down

WTFs per Minute ;-)

link|flag
vote up 0 vote down

Longevity.

I've had jobs replacing "legacy" systems that had been in place — practically untouched — for a dozen or fifteen years. (For DOS programs, this is thanks in part to Microsoft's extreme commitment to backward compatibility.) It's a testament to those systems when just one or two needed features finally motivates the upgrade.

In the right home, a great app can live as long as a healthy mutt.

link|flag
vote up 1 vote down

Your version control holds lots of information about the code.

When something's been changed a lot, either it means there's lots of bugs or perhaps it just means it's frequently involved in new features.

However when something's been left alone for a while (6-12 months?), that means it's stable and it might also mean lots of other code depends on it.

So this is a positive metric -- amount of code that hasn't changed in the past 6 months. It's also instructive as a measure of risk -- if you need to change a file that hasn't been changed in 2 years, perhaps you should be extra careful not to break anything since lots of other code might now depend on it!

link|flag
"Stable" code could also be code that is just so bad that nobody wants to touch it. It could also be dead code (code that is not actually used). Beware of using this as a metric. – Kristopher Johnson Sep 8 '08 at 21:28
vote up 2 vote down

G'day,

There are a whole stack of measures of software quality.

Off the top of my head I can think of:

  1. McCabe Cyclometric Complexity - basically a measure of the number of linear paths through code.
  2. Levels of indentation - a measure of complexity when looking at nested decision statements.
  3. Distance from declaration to first use - how many statements exist between where a variable is declared and where it is first used.
  4. Comment percentage - how many lines of code are comments compared to source code.
  5. Percent test coverage - as a percentage of lines of code, how many are exercised by your suite of tests.
  6. Path test coverage - how many paths of execution are exercised by your tests.
  7. Unit coverage - how many individual units, classes, packages, etc., are exercised by your unit tests.

There are many more metrics than can be measured, these are some of the most popular that I can think of off the top of my head.

HTH.

cheers,

Rob

link|flag
Only the test-coverage metrics listed here could be considered a measure of "quality." The others are measurements of complexity and readability, which really has nothing to do with quality. – Kristopher Johnson Sep 8 '08 at 21:30
So are you saying that complex code isn't an indication of bad code? Same thing with excessive nesting of decision paths. – Rob Wells Sep 8 '08 at 23:04
Just one other thought, doesn't just looking at the test metrics give you an idea of the quality of the assocated tests rather than the quality of the code itself? Both together give you a good metric of the code itself (the quality metrics) and the confidence in the code (the test metrics). – Rob Wells Sep 8 '08 at 23:20
vote up 0 vote down

Whenever you use a word like quality I think of the phrase "I know it when I see it." So in essence, the WTF anwser is pretty dead on. Hire better programmers and your software development quality will improve. Most metrics can be subverted by the programmers anyways, so measuring something doesn't make the end product any better.

link|flag
vote up 2 vote down

I'm surprised no one has mentioned the Capability Maturity Model (official page: http://www.sei.cmu.edu/cmmi/) This isn't strictly a measure of software quality, but it is a measure of the quality of your development processes. The 5 levels of the model correspond to degrees of complexity / reliability of the processes, level 1 is roughly equal to "no structure, no processes" lots of CS homework probably fits the level 1 description. As you add things like version control, automation, test suites, etc. the processes move up in the levels, and a well-operated software shop should have a CMMI level of 4 (5 is not general worth the effort unless you're dealing with extremely sensitive issues, like shuttle design)

link|flag
CMM and CMMI are measures of the repeatability of your processes. The ability to understand a user's changing requirements and adapt to those changes is not included. CMMI is "F.W. Taylor, we can predict beforehand all contngencies and allow for them" a.k.a. Model T Ford assembly line th – Rob Wells Sep 8 '08 at 23:01
vote up 0 vote down

The first thing to remember is to define your quality terms. Unless the term quality is defined you cannot measure it.

My quality terms are based on number of bugs found against the specicifation documents. But this is an overall product quality metric not neccessarily of the development. In large projects where there are a lot of dependencies on other teams, product quality will falter. So the bugs found have to be allocated to their respective sections.

link|flag
vote up 0 vote down

In our system we ask the users to answer a survey of 4 multiple choice questions about how they feel about the product having just used various modules.

In my experience, the parts developed with the subjective best quality code score higher.

(They can easily ignore the survey so it is not too annoying).

link|flag
vote up 0 vote down

Matrices... Doesn't tell you how good or bad your system is.

Its the users!!!

link|flag
vote up 0 vote down

Do the Joel test :-)

link|flag

Your Answer

Get an OpenID
or

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