Unit test & FakeItEasy
So you want unit testing – Good idea. FakeItEasy is an easy but still powerfull way to do unit testing. Below is listed sample code to get started doing unit test with FalkeItEasy. [crayon-5ae0c51f3cb20717010818/] Now we just need an implementation of ICalculator (the one we want to test) [crayon-5ae0c51f3cb29545738318/] The implementation of ICalculator takes an [...]