The StringAssert class is a hidden feature of the MSStest framework. Not so many methods, but they can help you with basic tests with strings.
Continue reading
The Assert class is the first step you’ll probably take into unit testing. But do you know that there’s more than the IsTrue() method?
Continue reading
Some of the things I learned at .NET Conf Italia: interfaces and abstract classes, Blazor, C# default interfaces and .NET Core on Samsung TV
Continue reading
Is a string empty? What if it contains only white spaces? You shouldn’t reinvent the wheel, since .NET exposes methods exactly for these cases: String.IsNullOrEmpty and String.IsNullOrWhiteSpace.
Continue reading