Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. Missing method exception

    Thanks Matt. I do think that this is a different side of the same problem. My theory at the moment is that there is some kind of data race involved when doing certain refactoring actions. 99% of the time, everything is fine and nothing goes wrong.. but on occasion, the data is being represented…

  2. Crunch on save and splitter position

    I've managed to reproduce the issue here now .. something is not right with the splitter distance persistence in vertical mode. I'll see that this gets fixed. Thanks for the report!

  3. Crunch on save and splitter position

    Hi Julien, Thanks for posting! I'm glad your enjoying NCrunch. The ability to run tests on save is an often requested feature. I think it will be implemented at some stage. It is, however, a problematic feature to introduce as the engine wasn't designed with this kind of workflow in mind, a…

  4. Debugger.Break crashes nCrunch TaskRunner

    Hi, thanks for posting! Unfortunately, there is nothing NCrunch can do about the task runner crashing in this situation. The Debugger.Break method is responsible for this action, and NCrunch cannot intercept its activities. You'll find that other test runners have the same behaviour in this sit…

  5. Making NCRUNCH aware of additional reference (for which there is no code, just dlls)

    Hi, great to hear you've been making some progress with NCrunch on this challenging solution. Can you share any details on how the ABC.dll project is being referenced from the "Frame" project? You've mentioned that this is an absolute reference - is this path declared in the MSBuild XML? For ex…

  6. Ability to display test output in text window

    Hi, Thanks for the suggestion. I'll look into it :) Cheers, Remco

  7. NCrunch fails to build project using MS Fakes

    Wow, nice find! I might see if I can rig up NCrunch to manipulate this file and show the error automatically. Thanks for letting me know about this.

  8. Test runner process crashes

    Hi Daniel - Thanks for the sample solution. The first time I opened it, the task runner immediately crashed. After some tinkering, it stopped crashing and NCrunch/NUnit started handling the thread abort normally, reporting a sensible error. I since haven't been able to get the problem to occur…

  9. Avoiding huge workspaces

    Hi Jeremy, Absolutely - try the [url=http://www.ncrunch.net/documentation/reference_runtime-framework_environment-class]NCrunchEnvironment.GetOriginalSolutionPath()[/url] method.

  10. Test runner process crashes

    No - you're absolutely right. It shouldn't. Sorry, I misunderstood. This isn't a known problem, so I might need some more information to try and figure out what is happening. NCrunch should only execute ThreadAbortExceptions inside try/catch blocks. Which test framework are you using? Is t…

  11. NCrunch fails to build project using MS Fakes

    Nice work in identifying this. I would be willing to bet that this problem is related to Fakes attempting to load the Prism/MEF assemblies during its generation of the Fakes. Because NCrunch suppresses the [url=http://www.ncrunch.net/documentation/reference_project-configuration_copy-referenced-as…

  12. Test runner process crashes

    Hi Daniel, Thanks for sharing this issue. This is most likely occurring because NCrunch enforces a default test timeout of 60 seconds whenever no existing timeout has been specified. This is because timeouts are very important when running tests continuously, as otherwise the engine can hang.…

  13. Tests failing when using MVVMLight PCL

    Excellent! Thanks!

  14. Tests failing when using MVVMLight PCL

    Thanks for sharing the sample solution. This was critical in analysing and finally resolving this issue. I have a fixed build for you here if you'd like to give it a try: [url=http://downloads.ncrunch.net/NCrunch_GridNodeServer_2.6.0.1.msi]http://downloads.ncrunch.net/NCrunch_GridNodeServer_2…

  15. NCrunch fails to build project using MS Fakes

    Hi, Thanks for sharing this issue. This is a blanket exception thrown by NCrunch whenever it executes a build that fails to complete, but provides no error information. The first step in to trying to resolve this would be to get a detailed log from the build. Set the [url=http://www.ncrunc…

  16. v2.5 Load failure on project that could load fine in v2.4

    Welcome :)

  17. Exclude compiler generated code from coverage?

    Thanks Nico - I'll look into it :)

  18. An attempt was made to load a program with an incorrect format.

    Hi, Thanks for sharing this issue. The cause of the BadImageFormatException is almost always related to an x86 assembly being loaded into an x64 environment, or vice versa. The rules around x86/x64 are slightly different for NCrunch. If you haven't already, I recommend having a read of [ur…

  19. Tests failing when using MVVMLight PCL

    Hi Garry - Thanks for sharing this issue. To help me best establish what is happening here, would you be able to try placing your solution into [url=http://www.ncrunch.net/documentation/troubleshooting_compatibility-mode]compability mode[/url]? I'm wondering if any specific configuration sett…

  20. v2.5 Load failure on project that could load fine in v2.4

    Hi, thanks for sharing this issue. The _SplitProjectReferencesByFileExistence is declared in the MSBuild targets usually referenced from the project file. If this project file is custom-made without using standard MSBuild references, it likely isn't supported by NCrunch. The most appropriate …