Jonas Gauffin

Results 44 comments of Jonas Gauffin

Better to add a complete sample :) ``` csharp [TestClass] public class DemoTests { [TestMethod] public void Show_what_I_meant_to_test() { var repos = Substitute.For(); var sut = new SomeService(repos); sut.Process(); repos.Received().Save(new...

Here are my alternatives: Usage: ``` csharp var actual = processor.GetListArgument("Process", 0); actual[0].Should().BeSameAs(expected); ``` Code: ``` csharp public static class Extensions { public static object GetArgument(this object instance, string methodName,...

I still use Griffin.Framework. working on a new and more modern networking layer in it (although slowly). also moving the data mapper to a separate repository.