Anton

Results 4 comments of Anton

Hi @delatrie I get a similar error when passing Mock objects (based on the Moq library - https://github.com/devlooped/moq) for my services or repositories as parameters in my test. Serialization of...

@delatrie It's quite difficult for me to prepare an example so that it does not contain personal data, but later I will try to prepare an example with which it...

@delatrie Here is the minimal code with which I can reproduce the problem. Running this test produces a report of 138 MB in size. The parameter string is very (VERY!)...

A much easier way to reproduce the problem: ```csharp public static IEnumerable GetMembers => [[() => { }]]; [Theory, MemberData(nameof(GetMembers))] public void Test(Action checkResultAction) { checkResultAction(); } ``` This code...