Forum member

edouard

3 posts

Posts by edouard

  1. NCrunch fails to test Newtonsoft's JObject.Parse() in .NET Core 2.1

    Just tried adding that reference, and my tests are now passing. Thanks-you!

  2. NCrunch fails to test Newtonsoft's JObject.Parse() in .NET Core 2.1

    Awesome - thanks for the quick reply. ASP.NET Core 2.1 takes a dependency on Newtonsoft.Json v11, so I can't downgrade in the code I found it in originally, but luckily that's just POC work for now - it seemed like a good opportunity to check out the bleeding edge. Not, it turns out, 100% proble…

  3. NCrunch fails to test Newtonsoft's JObject.Parse() in .NET Core 2.1

    I've found that .NET Core 2.1 class libraries that call Newtonsoft's JSON.NET library to parse a JSON document fail in NCrunch. Minimal example of a failing case: [code=csharp]public class Class1 { [Test] public void Test() { var doc = JObject.Parse("…