Using Moq to Create Fluent Test Classes in ASP.NET 5.0
Using Moq, we'll create a set of "fluent" mocked classes, which will clean up our tests by allowing us to "chain" methods being mocked.
Using Moq, we'll create a set of "fluent" mocked classes, which will clean up our tests by allowing us to "chain" methods being mocked.
Let's see how to unit test ASP.NET 5.0 applications using XUnit and Moq!
Let's build a complex but useful architecture called the Repository-Service pattern to clearly enforce separation of concerns.
I hate laundry, and particularly sorting socks. Let's make my hate a little less strong by learning how to sort socks efficiently with C#.
Let's take the FizzBuzz question and dissect how you can solve it, what the common mistakes are, and how to improve on it.