Semantic Comparison: Improve Test Assertions
SemanticComparison makes it easier to compare instances of various objects to each other and improve test assertions.
SemanticComparison makes it easier to compare instances of various objects to each other and improve test assertions.
Listen to tests and act on it to improve the code you are writing.
AutoFixture is an open source library for .NET designed to minimize the 'Arrange' phase of your unit tests in order to maximize maintainability
Different scenarios of test data generation.
Refactoring to add tests when fixing bugs helps increase your confidence and grow your test coverage.
In the earlier post, Removing Unnecessary Dependencies , we saw how having an unnecessary dependency hinders testability. In this post we will see just the opposite of that - extracting functionality out of a class and creating another class to separate…
In the earlier post, Removing Unnecessary Dependencies , we saw how having an unnecessary dependency hinders testability. In this post we will see how the test code changed by the refactoring we did for removing the unnecessary dependency and explore ways to…
Nowadays I am trying to stick to TDD (with the test first approach) and have found it to be of great help. One of the biggest reward doing TDD is that it helps me to stay in the flow and regain speed faster after a distraction. This post explains how to…
This post reflects on how code coverage is seen today in the industry and on how it should actually be seen and interpreted so as to produce better and stable code.
Over the days I have been reading on Test Driven Development(TDD) and it seems really interesting methodology to go with as per development is concerned. Basic of TDD is that the development process relies on 'tests', that are written prior to code. Sounds…