Category: c #
A code repository should target ZERO warnings. The compiler warnings are there to warn you about the code quality and sometimes more serious issues. Half year ago, our code-base …
Background I was asked by my manager to optimize a piece of code that has been in the code repository for like 4 years. Actually, that particular piece of …
On the CI (Continuous Server), the step after compiling source code is to use Dotfuscator that obfuscates the .NET source code. Today, I upgraded the Dotfuscator to 4.8 but …
There are a number of mocking frameworks available to .NET programmers, these include: Moq Rhino Mocks NSubstitute FakeItEasy Microsoft Fakes All support the generation of standins for abstract classes, …
There are number of unit testing frameworks available to .NET programmers, these include: MStest NUnit xUnit MBunit They are all offer support for providing a framework for creating tests …