Year: 2009

  • Unit testing and the big dependency graph

    So you are working on a BIG project and you discover that writing unit-tests is really a pain. Why? Because once you want to create a new test, you find out that the class you want to test has got a lot of dependencies to other classes, which you do not want to be bothered…

  • The benefits of the codereview process

    The benefits of having a code-review process in your team is that your entire codebase is getting maintainable. Let’s jump into a code review session. Say that somebody has committed new functionality in our flight.cs class. The flight can now tell if it is a non-stop flight or not, have a look at the code…