/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

anthonysciamanna.com
| | arne-mertz.de
2.4 parsecs away

Travel
| | Contents Inmy last post I have written about the main and secondary usesof unit tests and how they compare to other kinds of automated tests. This time I will explore [...]
| | ijrussell.github.io
2.8 parsecs away

Travel
| | In this post, we are going to learn how to use Test-Driven Development (TDD). You will discover why I find the technique useful and discover how to write tests that allow you to change the implentation of your code in a safe way that doesn't introduce bugs or break the tests.
| | blog.wingman-sw.com
2.9 parsecs away

Travel
| | Have you written unit tests only later to find they slow you down because your changes cause a lot of test breakage? You think, these tests are not living up to the promises I heard. So you toss th...
| | www.softdevtube.com
13.4 parsecs away

Travel
| Passing data through a pipeline of transformations is an alternative approach to classic Object-Oriented Programming (OOP). The LINQ methods in .NET are designed around this, but the pipeline approach can be used for so much more than manipulating collections. This presentation looks at pipeline-oriented programming and how it relates to functional programming, the open-closed principle,