Building high quality end to end acceptance tests suites is hard, and creating
API stubs (aka mock servers) can be surprisingly time consuming. WireMock.net
[https://github.com/WireMock-Net/WireMock.Net] can help speed this…
WebApi controller actions can return a variety of response types:
HttpResponseMessage, IHttpActionResult, CLR objects and then the Task based
variety of each for async actions. But which one is best? And how do we unit…
After deploying a website don't assume it succeeded - add automated tests to
check everything works.
Back in the old days you would open a browser and check your new version of the
site works…
In addition to my previous post about how to do better code reviews
[https://alastaircrabtree.com/what-to-look-out-for-in-a-code-review/] below is a list of
specific things to watch out for during code reviews, in no particular order:…
Code katas such as the classic bowling game kata by uncle bob
[http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata] are a good way of
fostering TDD best practice in your team. Here, in no particular order,…