Forum member

Paramethod

10 posts

Posts by Paramethod

  1. Rider plugin loading error with Rider 2024.3 EAP 1

    Ok. Thanks for the update. When it is ready for 2024.3, if you need early testing, let me know.

  2. Rider plugin loading error with Rider 2024.3 EAP 1

    Hi Remco, No worries, I've changed back to the stable ring. ncrunch is just too important.

  3. Rider plugin loading error with Rider 2024.3 EAP 1

    Hello, Rider 2024.3 EAP 1 was recently released and the ncrunch plugin fails to load with this error: NCrunch encountered an error during the initialisation [code=plain]System.MissingMethodException: Method not found: 'JetBrains.DataFlow.ISignal`1 JetBrains.RdBackend.Common.Features.Toolse…

  4. NCrunch was unable to restore Nuget packages required to build a test environment for this project

    Not too sure where to write this, but I had a very similar error (NCrunch was unable to restore Nuget packages required to build a test environment for this solution) in Ncrunch for Rider v5.9.0.1. The solution that worked for me was to exit Rider, delete the `C:\Users\<UserName\AppData\Local\NCrunc…

  5. Go to DataRow?

    Hi Remco, I understand, that is too bad. As an alternative, what would help is if I could copy to clipboard at least the name of the test. Then I could make a search to get to the correct one. I don't think I can currently copy the name from the NCrunch Tests grid. I workaround by exporting the g…

  6. Go to DataRow?

    Hello, I have a test class with a single test with multiple data rows. When I'm in the NCrunch Tests window, I can select a test and right-click 'Go to selected test' which brings me to the first line of the test. Is there any way I could go the related DataRow instead? Thanks, Alex

  7. UserException - targetting netstandard 2.0

    Hi, In case it could help... I had the same exception right after I migrated many projects from net472 -> net48. Only the target framework in the error message is net472. I cleaned the solution, purged the bin and obj folders, deleted the ncrunch cache, it didn't work. In the end, I simply edited…

  8. MSTest AssemblyInitialize

    Hi Remco, No need to apologize, this was my mistake. I will try the approach you suggest with a build condition. Thanks for your help and the awesome product. Alex

  9. MSTest AssemblyInitialize

    Hi Remco, Thank you for your solutions, unfortunately I cannot debug the test or force load the libraries in initialize. I was only looking at the failed test node error, and it seems the failure is not at the test level, but at the test project level. Here's the 'Analysis failure' error for that…

  10. MSTest AssemblyInitialize

    Hello NCrunch, I'm using the MSTest AssemblyInitialize to subscribe to AppDomain.CurrentDomain.AssemblyResolve to dynamically load either x86 or x64 dlls at runtime (See http://stackoverflow.com/a/9951658 for implementation details). In Visual Studio Test Explorer, all those tests run correctly a…