Live data from Hacker News

Ask HN: How does your company ensure its code and product are of quality?

news.ycombinator.com

1–4 of 4 posts

Ask HN: How does your company ensure its code and product are of quality?

#1
I really wanted to post a poll but apparently I don't have enough karma. =|

Curious what processes/techniques software companies use to make sure their codebase and by extension product remain good quality. Stuff like extensive code reviews, comprehensive unit tests, manual testing, pair programming, etc. - or do you just move fast and break stuff?

Re: Ask HN: How does your company ensure its code and product are of quality?

#3
We use a three prong attack that has really boosted our code quality:

1. Automated unit tests AND behavior driven tests (outside-in testing)

2. Having the code checked by another developer by doing a code review or pair programming

3. Week of hardening where the code is tested by the project manager/business analyst/QA person

I really think that helps to cover all bases. Clients sometimes think it's overkill but it's much easier to fix a bug the earlier it's caught.