Floating point numbers and Unit Testing
Floating point numbers are inherently imprecise. This can be problematic when we try to unit test numerical algorithms. Let’s see this on an example (JVM/Scala, ScalaTest... »
Floating point numbers are inherently imprecise. This can be problematic when we try to unit test numerical algorithms. Let’s see this on an example (JVM/Scala, ScalaTest... »
FluentValidation is one of the best validation libraries for .NET. I use it daily both at work and in my personal pet projects. Still from time... »
For a long time I have been fan of mocking frameworks like Moq and NSubstitute. These libraries seems indispensable while unit-testing. They allow us to easily... »