vote up 5 vote down star
1

I'm giving a presentation on refactoring Python. I'd like to put in a couple of slides giving statistics to show that refactoring is a good thing. I've been searching the ACM digital library, but it's a bit like looking for a needle in a haystack. Does anyone know of any statistics on the subject of refactoring in regards to productivity or quality that would be good in a presentation?

flag

OT, but will you show the slides somewhere ? Would be interesting. I don't have a nice refactoring workflow yet for python.. – Homer J. Simpson Oct 11 at 6:54
Sure. I'll probably post it on hacker news when it's done (news.ycombinator.com). – Jason Baker Oct 11 at 21:39

2 Answers

vote up 1 vote down

Effective refactoring is strongly linked to test-driven development, since the common consensus is that unit tests are necessary to demonstrate the refactoring is safe. This is advocated by Martin Fowler, for example. In that light, there is another SO question which lists papers quantifying the effectiveness of test-driven development which should be useful to you.

link|flag
2  
Technically, you don't need TDD, you need to have unit tests (or just tests) to be able to safely refactor. – Mathias Oct 11 at 1:58
vote up 1 vote down

Here's a blog post from Martin Folwer that has several stat's on TDD (Test Driven Development). While not refactoring only, refactoring is a constant for TDD'ers and refactoring is nearly impossible without at least unit testing (not necessarily TDD style).

link|flag

Your Answer

Get an OpenID
or

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