Forum member

Dinesh

11 posts

Posts by Dinesh

  1. AnyCPU Test not working

    Thanks, I don't need to do this anymore so I've removed <PlatformTarget>AnyCPU</PlatformTarget> from my csproj which is what it was before and all good.

  2. AnyCPU Test not working

    My main project is AnyCPU and so is my test project. Before I did not have the following line in my main project csproj file <PlatformTarget>AnyCPU</PlatformTarget>, once added I get following exception. System.Exception: An exception was thrown in the remote environment: System.Reflection.Targe…

  3. Test failing on v3.18.0.2 but was not failing in v.3.17.0.2

    Tested and it works with v3.19, thank you for the quick turnaround, really appreciated.

  4. Test failing on v3.18.0.2 but was not failing in v.3.17.0.2

    That was quick, let me download and test it.

  5. Test failing on v3.18.0.2 but was not failing in v.3.17.0.2

    Thank you, will wait for v3.19 before I upgrade.

  6. Test failing on v3.18.0.2 but was not failing in v.3.17.0.2

    That is good news you can replicate the problem, hopefully not too long before you resolve it.

  7. Test failing on v3.18.0.2 but was not failing in v.3.17.0.2

    I'm not using them here is my using statement using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Reflection; using NUnit.Framework; You should be able to see it the code I published working with v3.17 and NOT working with v3.18. Also if you chang…

  8. Test failing on v3.18.0.2 but was not failing in v.3.17.0.2

    Have you run the code in v17, you should not get any error. Test works in Resharper test runner and MSTest using the NUnit Test Adapter, just does not work with NCrunch. 100% NCrunch issue. Here is exception from NCrunch System.Exception : Error registering message type List`1 with type. …

  9. Test failing on v3.18.0.2 but was not failing in v.3.17.0.2

    [quote] private class TestMessage2 { public DateTime DateTimeData { get; set; } public string StringData { get; set; } public int IntData { get; set; } } [Test] public void TestNotWorking() { …

  10. Test failing on v3.18.0.2 but was not failing in v.3.17.0.2

    100% it is the nCrunch v3.18 release, I downgraded to v3.17 and it works, I then upgraded back v3.18 and it failed, then downgraded one more time to v3.17 and it works.

  11. Test failing on v3.18.0.2 but was not failing in v.3.17.0.2

    Hi Support, I have just upgraded to your latest version and lots of my test are failing. It only fails when the item in the generic list is an interface e.g. List<IEvent>, please note this works correctly in version 3.17.0.2 Error Code line: return Expression.Lambda<Func<object, object>>…