Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. Slow unit test runs forever

    [quote=devdept;13577] How would you identify critical code sections? [/quote] Sorry, I'm not sure if I understand this question .. are you asking for a better way to find performance bottlenecks in your code?

  2. Array as datarow attribute parameter

    Hi, thanks for posting. I'm sorry to say that right now that due to feasibility constraints we have no plans to change how this is implemented. Transferring complex types from an unloaded static/CIL domain into a runtime domain is very tricky business and is full of nasty edge cases, many of whi…

  3. Slow unit test runs forever

    [quote=devdept;13574]Hi Remco, Regarding this, does it mean that afterward code coverage will not be 100% accurate? It would be a big problem for us. Thanks, Alberto[/quote] Not necessarily. It depends upon the extent to which you use it. When you suppress code coverage for a region…

  4. Tests failing when using MVVMLight PCL

    I'm not sure if the solution implemented for NCrunch would apply in your situation, but I can summarise the change for you. In its runtime environment, NCrunch hooks the AppDomain AssemblyResolve event and implements custom search logic to find assemblies using its own knowledge of where they are…

  5. Could not load file or assembly 'xunit.runner.utility.netstandard15

    Thanks for sending through the sample solution. This really helped with analysing the issue. It appears to be a reference clash involving xunit.runner.utility (which is also used by NCrunch to interact with xunit). Would you like to try the build below to see if this solves the problem for you?…

  6. Debugger visualizers not working anymore after update to 3.22.1

    [quote=tasoss;13567]Hello again and thanks for the feedback. I have tried version 3.28 and it seems that debugging is working again(on vs 2017). Thanks![/quote] Awesome, thanks for confirming!

  7. Gridnode "Pool"

    Hi, thanks for posting. The structure you're after was considered early in the development of the grid system. Although there are advantages to it, it was rejected in favour of the current model for the following reasons: 1. A pool-based system doesn't allow the individual resources of nodes …

  8. Netstandard test helper project cannot reference xunit.extensibility.core

    Hi, thanks for sharing this. In this situation, the correct response is to set the 'XUnit v2+ Enabled' configuration setting for the TestHelpers project to 'False'. I'm revising the documentation to make this clearer.

  9. Console: ERROR (Internal): Unable to load description for framework 'nCrunch.Module.Gallio.Inte...

    I saw this issue appear a bit when we were still modularising the areas of NCrunch and adjusting the installers (several years back). At present, I don't know of any way the problem can occur between newer versions of the product while using the standard installers. Sometimes people would extract …

  10. Could not load file or assembly 'xunit.runner.utility.netstandard15

    Inside any sample project, could you try introducing a package reference to the xunit.runner.utility Nuget package, then build the project? This will cause Nuget to ensure the package is downloaded and installed on your machine. NCrunch should normally restore this package automatically and it sho…

  11. Console: ERROR (Internal): Unable to load description for framework 'nCrunch.Module.Gallio.Inte...

    Hi, thanks for sharing this issue. This is caused by a duplication of Gallio plugins in the NCrunch install directory. Try clearing out your NCrunch install path, then reinstalling it.

  12. Could not load file or assembly 'xunit.runner.utility.netstandard15

    Hi, thanks for sharing this issue. Could you check the following? - If you have any binding redirections in place, could you try removing them to see if this changes anything - Could you try removing the reference to xunit.runner.visualstudio to see if this changes anything - Could you t…

  13. Project build failure - NuGet restore

    [quote=lmoelleb;13550]Great, it works. You are in good company - .NET Core also failed on this a few versions back... and Windows still can't zip a file on my desktop. Why someone would create a username with non ascii characters is beyond me, but they thought they were being helpful. :) [/quote] …

  14. How to diagnose why ncrunch build takes so long?

    Good find and nicely fixed :)

  15. How to diagnose why ncrunch build takes so long?

    Hi, Yes, you can get a more detailed look at the build, and you definitely should. Set your Log Verbosity configuration setting to 'Detailed' then let the NCrunch build run and examine the log in the Processing Queue Window. Probably, there is a step somewhere that is eating a lot of time, an…

  16. Project build failure - NuGet restore

    Your guess about the non-ascii character seems to have been correct. No gnomes in here :) Would you like to try the build below to see if it works better for you? [url=https://s3.amazonaws.com/downloads.ncrunch.net/NCrunch_Console_3.29.0.1.msi]NCrunch_Console_3.29.0.1.msi[/url] [url=https://…

  17. Problems with tests pinning.

    [quote=Marqus;13542]I see your point. But I think, that we shouldn't pin namespace, but only all test fixtures that are currently inside this namespace (or assembly). If I add new fixture into such namespace I will see that it's not running (coverage markers will tell me this) and I will know, that …

  18. Problems with tests pinning.

    Hi, thanks for posting. The pinning of namespaces opens an interesting question about expected behaviour. If you were to pin a namespace, would you expect it to pin only the tests visible in the tests window under your chosen namespace, or would you expect it to pin ALL the tests in the namespac…

  19. Project build failure - NuGet restore

    Hi, thanks for sharing this issue. Would you mind submitting a bug report after NCrunch has done a pass of your test project? The log file in the report may yield some useful information about why this is happening.

  20. Feedback for "Timeline Report Now Available Inside VS"

    I agree. The timeline report is in every way better than the current processing queue window. It will take some effort to turn this into a proper interactive report though. It was originally designed to run in bulk (not real time), and render in HTML. I think we're just going to have to see what…