Search Results

2
votes

TDD and productivity

The learning curve for TDD is significant and ongoing. Teams that are learning TDD from scratch may often have to learn new ways of coding to effectively support TDD. While this can slow …
0
votes

Refactoring and Source Control: How To?

Frequent check ins. Team members should be checking in their changes and re-syncing their sandboxes at least once per day. With more frequent check ins merge conflicts will occur …
1
vote

Database integration tests

Just to add to Free Wildebeest's answer I have also used HSQLDB to do a similar type testing where each test gets a clean instance of the DB. …